Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a text something like this:
one two three four. [1 2 3 4]
I need to extract only "one two three four."
Would be better to get it without space before [.
Can someone help me please?
Thank you
Trim(SubField('one two three four. [1 2 3 4]','[',1))
KeepChar ( '[1 2 3 4]','0123456789' )
I cannot use keepchar, I dont know whats in there between [].
And I dont want to keep it, I need to cut it out and get whats left.
Not sure I understand, but how about PurgeChar
Trim(PurgeChar( ...., '[]')) as ....
Trim(SubField('one two three four. [1 2 3 4]','[',1))
Works great, thanks.