Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have data as follows and basically need data before "@" and after "/"
us/us 2013/us@2018/uk
This gives us
=SubField(SubField('us/us 2013/us@2018/uk', '@', 1), '/', -1)
Since '/' repeats multiple times, which one do you want to consider? In essence what is the string that you would like to pull out?
One option can be to try this
=TextBetween('us/us 2013/us@2018/uk', '/', '@')
Or this
=SubField(SubField('us/us 2013/us@2018/uk', '@', 1), '/', -1)
Hi Thanks Sunny.
I am looking for "us" .I think either of functions gives answer
This gives us
=SubField(SubField('us/us 2013/us@2018/uk', '@', 1), '/', -1)
using text function this will give aswer :
=TextBetween('us/us 2013/us@2018/uk', '/', '@',2)