Hi,
I have to split an outgoing claim string value into a multiline text as follow:
Text_1¦Text_2¦Text_3¦Text_4
Split to:
Text_1
Text_2
Text_3
Text_4
I try to use the RegExRelace() function but I can't find the right syntax for new line/carriage return char
Exemple:
c:[Type == "string_1"]
=> issue(Type = "string_2", Value = RegExReplace(c.Value, "¦", "[\n\r]"));
Some suggestions?
Thanks in advance.
I have to split an outgoing claim string value into a multiline text as follow:
Text_1¦Text_2¦Text_3¦Text_4
Split to:
Text_1
Text_2
Text_3
Text_4
I try to use the RegExRelace() function but I can't find the right syntax for new line/carriage return char
Exemple:
c:[Type == "string_1"]
=> issue(Type = "string_2", Value = RegExReplace(c.Value, "¦", "[\n\r]"));
Some suggestions?
Thanks in advance.