Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Right now I have a regex where it checks if the string in a decimal format or not:

-?\d+(?:.\d+)//any positive or negative number, including decimals

If I wanted to create a regex for a fraction, which may also consist of decimals, such as:

  • 3.1/2.6
  • 1.00/5.00

Would the following be valid?

 -?\(d+(?:.\d+)|d+(?:.\d+)/d+(?:.\d+))//a decimal OR a fraction(including decimals)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
797 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use this regex to support positive/negative integers, decimals with optional fractional part:

-?\b\d+(?:\.\d+)?(?:/\d+(?:\.\d+)?)?\b

RegEx Demo

Or if you're using Java's String#matches() method then use this regex:

-?\d+(?:\.\d+)?(?:/\d+(?:\.\d+)?)?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...