I have two input strings that look like 'London 350 Paris 456 eu iu' and 'New York 154 Seattle 890 pc appl iu'.
Now, I need the first number from the string. So the query/function needs to loop through the entire string and get all numbers from the first time it sees a number and the first time it hits a non-number.
So in this case, the outputs should be '350' and '154' respectively.