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

Categories

0 votes
800 views
in Technique[技术] by (71.8m points)

java - Regex for decimal or fraction

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

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

1 Answer

0 votes
by (71.8m points)

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+)?)?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...