我正在尝试创建一个正则表达式来解析字符串中的 5 位数字,无论它在哪里,但我似乎无法弄清楚如何获取开始和结束的情况。
我使用了如下模式,\\d{5}
但这将获取更大数字的子集......但是当我尝试做类似的事情时,\\D\\d{5}\\D
它不适用于最终情况。我会很感激这里的任何帮助!谢谢!
对于一些示例(55555
应该提取的内容):
At the beginning of the string
"55555blahblahblah123456677788"
In the middle of the string
"2345blahblah:55555blahblah"
At the end of the string
"1234567890blahblahblah55555"