I'm trying to create an expression that extracts strings greater than 125 from a given string input.
var input = "YH300s, H900H, 234, 90.5, +12D, 48E, R180S, 190A, 350A, J380S";
Please view the link for further reference to my script/data example.
Here is my current expression attempt (*):
Regex.Matches(input,@"(?!.*\..*)[^\s\,]*([2-5][\d]{2,})[^\s\,]*"))
From the above expression, the only output is 350A, J380S.
However I would like to extract the following output from the input string (see link above for further reference):
YH300s, H900H, R180S, 190A, 350A, J380S
Any further guide as to where I may be going wrong would be very much appreciated. Apology in advance if my context is not clear, as I am still novice in writing regex expressions.
