Problem with a regex

I want to extract integers of length 2 and 3 from a text.An integer is a continuous sequence of digits(0-9).

Sample Input:
55 AND 4 OR 5656 BUT57.*?98.99AND100.101.102+103|104&105<106>107=108/109%110 1111 111 11 1
Expected Output:
55,57,98,99,100,101,102,103,104,105,106,107,108,109,110,111,11
What would be an appropriate Regex to use in this case?

Try this

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.