I'm trying to extract a sub-string from a string:
For example I have this bigger string: something""incoming",nothing",""put"left""try
Testing with the function extract() from https://docs.appian.com/suite/help/17.2/fnc_text_extract.html
I get always an error when I want to extract : nothing
extract( "something""incoming",nothing",""put"left""try", "ing""", ""," )
Type:Error Value:Expression evaluation error : Unmatched quote (")
or
Any ideas how to capture the word or skip the quotes when parsing?
Discussion posts and replies are publicly visible
try to put it into a rule input as shown below:
Yeah I was just showing one way of handling inputs that include quotations. You can also use the (somewhat more tedious) syntax below to escape individual quotes. This will return the string "nothing", excluding the extra quotation marks.