How to transfer A into B
A
B
Hi phoebe_90You can use a RegEx tool and use the expression \d+% with output method as TokenizeThanks!
Hi @phoebe_90
You can use the following regular expression:
.*\s(\d*%)\s.*
Regular Expression Tool:
Note, the regex parses #% and ##% and ###% it does not handled decimal points.
Hope this helps,
Arnaldo
Use Regex Tool and try this formula \d+%
Hi, @phoebe_90
1- By RegEx tool of Parse method:
([0-9.]+?%)
2- Use formula :
Substring([Expense Type],FindString([Expense Type], ' ') + 1,FindString([Expense Type], '%') - FindString([Expense Type], ' '))
@phoebe_90 The regex tokenize would do the trick