New to regex syntax here. 努力写一个登记册,以提供一些意见验证。
What I need is a regex to match a whole number, or a decimal with exactly one digit past the decimal.
Good Match
1
12
100
1.1
100.1
1.0
No Match
1.22
1.
0
012
这里是我来的,但我没有做什么工作:
Regex.IsMatch(paidHours, "\d+[.]?[0-9]?")