Hi Jesse,
please have a look at the “Parse text” action. There you can use regular expression to get the result:
1. Add the "Parse text" action to your flow.
2. In the "Text" field, enter the string from which you want to extract numbers.
3. Enable the "Is regular expression" option.
4. In the "Pattern" field, enter the regular expression pattern you want to use, such as `(\d+)` to extract numbers.
5. Specify the output variable where you want to store the extracted numbers.
Once you configure the "Parse text" action with the appropriate regular expression pattern, it will extract the numbers from the input string and store them in the specified output variable.