[Solved] Regex to match integers, decimals and fractions [duplicate]
Give this one a shot: (\d+[\/\d. ]*|\d) http://regex101.com/r/oO9yI9 In the future, I’d suggest making your question more clear so we can actually understand what you’re trying to do — provide inputs, expected outputs, and include the programming language you’re using. vb.net is PCRE compliant, so you should be able to use this: Dim regex As … Read more