core.noscript.text
I have a field that contains data like below. I need to extract 'CTO' from that field.
Example:
A (CTO)
Ast (CTO)
Ktre (CTO)
Box (CTO)
Solved! Go to Solution.
Use the RegEx tool in Parse mode
@PN2527 ,
please try this instead of regex:
IIF( Contains([field],"CTO"),"CTO",Null())
cheers,
mark