I wanted a regular expression to pick up the minutes in a string with this format:
1 min
10 min
I made that expression. \d(?= min)
The problem is that it only takes the last number, the closest to the min. How would I get all the numbers?