Forum Discussion
FP68
6 months agoHelper I
Syntax problem
Hello, I've a clolumn with a long string [TAGS] in which I can find "ApplicationName=xxxxxx" In this string, each data is separate with ";" I just want to know the position of the ";" after the "A...
- 6 months ago
Hi,
You may tryCountries2 =VAR _x =SEARCH ( "ApplicationName=", [TAGS], 1, BLANK() )VAR _z =_x + LEN ( "ApplicationName=" )VAR _result=SEARCH ( ";", [TAGS], _z, BLANK() )RETURN_resultTested with some random data.
FP68
6 months agoHelper I
Thanks a lot, it works fine