asked on November 2, 2017
Hi,
I have to extract the first value from the string before the underscore [_], the string before the _ can contain numbers or just words or both and no set value of how many characters in the string, it always varies.
ABDHS23423_Paid_Up_L etter_2017_09_18_145444
Result should be = ABDHS23423
1ADT122435_Settlement_Letter_2017_09_18_122312
Result should be = 1ADT122435
43074635_Statement_2017_14_15_12312
Result should be = 43074635
Regex i have tried which works on testing tools, but not on Workflow.
^([A-z,0-9]+)_.*
0
0