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

what the regular expression of a line of string containing ONLY float numbers separated with spaces or tabs. The float number can be negative, like -999.999

See Question&Answers more detail:os

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

1 Answer

(?:-?(?:d+(?:.d*)|.d+)[ ]*)+

is one possibility. In more readable format:

(?:
  -?                 # Optional negative sign
  (?:
    d+(?:.d*)     # Either an integer part with optional decimal part
    |
    .d+             # Or a decimal part that starts with a period
  )
  [ ]*             # Followed by any number of tabs or spaces
)+                   # One or more times

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