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)
解決済! 解決策の投稿を見る。
Use the RegEx tool in Parse mode
@PN2527 ,
please try this instead of regex:
IIF( Contains([field],"CTO"),"CTO",Null())
cheers,
mark