Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

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

regex - regular expression: a line of string contains only float numbers and tab/spaces

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

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

1 Answer

0 votes
by (71.8m points)
(?:-?(?: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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...