Please help me with a RegEx to extract only the numbers from a string variable

Hi @JeevaSadha , can you try this?

\d+

  1. Add a “Matches” action.
  2. Set the input text to “Text123”.
  3. Set the regex pattern to \d+.
  4. In the properties panel, set the “Result” field to a variable (e.g., extractedDigits).

This should extract the digits alone.

Thanks,
Aswin Sridhar

1 Like