Groovy 正则表达式/模式匹配
我们如何在 groovy 中进行正则表达式匹配,下面的示例中 groovy 中的正则表达式是什么?
Example : f2376 Regex: (anyLetter)(followed by 4 digits)
How do we do regex matching in groovy, what will be the regex in groovy for below example?
Example : f2376 Regex: (anyLetter)(followed by 4 digits)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 groovy 非常简单
"f1234" ==~ /[az]\d{4}/
请注意,正则表达式
[az]\d{4}
表示任何字符 az 一次,后跟 4 个数字,并且可以与任何处理正则表达式的语言一起使用,而不仅仅是 groovy。在我的控制台中,我只测试了小写字母,但要处理大写字母,只需执行
"f1234" ==~ /[a-zA-Z]\d{4}/
Pretty simple with groovy
"f1234" ==~ /[a-z]\d{4}/
Note that the regex
[a-z]\d{4}
means any of the characters a-z once, followed by exactly 4 digits, and can be probably be used with any language that handles regex, not just groovy.In my console I tested for just lower case letters, but to handle upper case too just do
"f1234" ==~ /[a-zA-Z]\d{4}/