I would like to ask for help and guidance,
What is the best format to use in RegEx in extracting the set of numbers coming from the following set
Example:
Loan Number: 423454546565_x000D_ Extracted Should be: 423454546565
or
Loan #: 1234567894_x000D_ Extracted Should be: 1234567894
or
Re Loan #: 1234567890_x000D_ Extracted Should be: 1234567890
Thank you so much in advance
Solved! Go to Solution.
@Grail030510
use this in reg ex
(\d+)_x000D_
find the workflow attached
mark done if solved.
@Grail030510 fantastic - if you could then accept one or multiple replies as the solution, it would be greatly appreciated.
For your second question, you would just use a Replace function to replace the space with nothing - Replace([Serial Number], " ", "")
User | Count |
---|---|
17 | |
15 | |
15 | |
8 | |
6 |