Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have to extract the string ...strarting after and ending before "_".
please suggest.
Dear ,
You can use SubField function .
Like
=SubField('_Hello_','_',2)
or
=SubField('Hello_','_',1)
Thanks,
Mukram
Or use TextBetween(), like in:
=TextBetween('1234567_Hello_ABCDEFGHIJ', '_', '_')
Add a fourth parameter n if you want to start parsing only after the n-th occurrence of _
it is not working.
Could you provide an example of the field you are trying to parse?
What is not working? Could you at least post an example of your input string? Otherwise we will be working in the dark.
Hi Gizzel,
Please find the attached.
Thanks
Padmanabhan
It's working perfectly. The box to the right shows the second value delimited by ".
Or is this not what you want?
BTW there aren't any underscores to be found in your field Test.
=TextBetween(string,' ','_')
HI,
You can replace " " " by " _ ".
Thanks
Padmanbhan