Survey flow branch if "ends with" | XM Community
Skip to main content
Solved

Survey flow branch if "ends with"

  • November 27, 2023
  • 1 reply
  • 46 views

Forum|alt.badge.img+2

In my survey flow, I have added a “Then Branch If” section, for the condition I would like it to end with a certain word; however, the only options are “equal to” or “contain”, I do not see anything for “ends with”

Is there a solution for this?

Thank you!

Best answer by Radam

Not a REGEX expert but you should be able to use it:

 

$ is used to match the end of the string. and can be used like: “string”$

so adam$ if you want to see is adam is the end.

1 reply

Radam
Level 4 ●●●●
Forum|alt.badge.img+33
  • Level 4 ●●●●
  • 171 replies
  • Answer
  • November 27, 2023

Not a REGEX expert but you should be able to use it:

 

$ is used to match the end of the string. and can be used like: “string”$

so adam$ if you want to see is adam is the end.