**已关闭。**此问题需要debugging details。它目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
上个月关门了。
Improve this question
如何编写匹配此字符串的正则表达式
已处理接收到的请求,其messageId:test,clientId:7 da 6554 c-e3 ed-49 ed-9a 7 f-f810 f98 ceb 7 f
UUID将始终不同
所以我想检查一些大的文本,如果它包含
已处理接收到的messageId:test,clientId:some uuid 的请求
bigText.matches(regex) == true
2条答案
按热度按时间ffdz8vbo1#
可以使用此正则表达式匹配指定的字符串模式
Java语言的完整代码:
输出:
说明:
**pattern:**是正则表达式模式,用于查找UUID的固定部分“Received request with messageId:test,clientId:“,后跟一个或多个单词字符(\w)和连字符(-)。
dxpyg8gm2#
我不使用正则表达式,而只查找消息前缀。