We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.4花括号实例那里 "[0-9]{2}" => The number was 9.9997 but we rounded it off to 10.0. 这里匹配的应该只有后面的10吧
The text was updated successfully, but these errors were encountered:
他的意思应该是["99","97","10"]吧。。。
Sorry, something went wrong.
在字符串 The number was 9.9997 but we rounded it off to 10.0. 中,[0-9]{2} 匹配到三个字符串:99、97、10。因为 99 和 97 相邻,所以你可能将其误会为 [0-9]{2} 匹配到了 9997。 @GRPdream
The number was 9.9997 but we rounded it off to 10.0.
[0-9]{2}
99
97
10
9997
No branches or pull requests
2.4花括号实例那里
"[0-9]{2}" => The number was 9.9997 but we rounded it off to 10.0.
这里匹配的应该只有后面的10吧
The text was updated successfully, but these errors were encountered: