Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想知道用于解析的正则表达式
InputDispatcherTest.TimmyTest_ASSERT customize/base/services/input/tests/InputDispatcher_test.cpp:153: Failure
我正在使用\\s[:]\\d[:]\\s,但它不工作。
\\s[:]\\d[:]\\s
什么样的号码?整数?浮点?你的输入是什么?
这对我来说不合适。我会为整数这样做:
^\\d+$
我建议在检查之前修剪字符串。
我认为这就足够了:
".+:\\d+:.+"
\s 匹配一个空白字符,试试:
\\w+[:]\\d+[:]\\w+
"\S+[.]\S+:\d+:[]\S+"
我使用上面的正则表达式作为解决方案