我有这个长字符串值:
"10 12 10/05/2014 p4=34"
我想只得到两位数字(带下划线):
"10 12 10/05/2014 p4=34"
-- -- --
所以结果应该是
10 12 34
答案 0 :(得分:1)
尝试使用:
(?<![\d/])\d\d(?![\d/])
其中:
(?<![\d/]) : negative lookbehind, assumes there're no digits nor slashes before.
\d\d : 2 digits.
(?![\d/]) : negative lookahead, assumes there're no digits nor slashes after.