我是靠谱客的博主 落后秀发,最近开发中收集的这篇文章主要介绍「Groovy」- 正则表达式 @20210409,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题描述

该笔记将记录:在 Groovy 中,常用正则表达式,以及常见问题处理。

解决方案

使用 ~string 即可定义 java.util.regex.Pattern 对象。例如 ~"[Gg]roovy" 或者 ~/[Gg]roovy/ 格式

使用 =~ 即可定义 java.util.regex.Matcher 对象

// java.util.regex.Pattern
def pattern = ~/S+erb/

// java.util.regex.Matcher
def matcher = "My code is groovier and better when I use Groovy there" =~ pattern

assert matcher instanceof java.util.regex.Matcher

// 或者
def matcher = "My code is groovier and better when I use Groovy there" =~ /S+erb/
assert matcher instanceof java.util.regex.Matcher

判断是否包含某个字符串

使用 =~ 操作符(Matcher):

if ("My code is groovier and better when I use Groovy there" =~ /S+erb/) {
    println "At least one element matches the pattern..."
}

使用 ==~ 操作符(Boolean):

if ("My code is groovier and better when I use Groovy there" ==~ /S+erb/) {
    println "At least one element matches the pattern..."
}

示例的两种方式是不同的:
1)前者,在 if 语句中的是 Matcher 对象,只检查字符串是否包含与 Matcher 对象匹配的内容
2)后者,在 if 语句中的是 Boolean 对象,可类比于调用 matcher.matches() 方法,进行严格匹配

注意事项:
1)符号两侧是不能交换的,左侧为字符串,右侧为正则表达式;
2)如果多行字符串的匹配,需要使用 =~ 符号,而 ==~ 会失败;

找到所有匹配元素

找到所有匹配元素,并返回匹配元素的列表:

def text = """
This text contains some numbers like 1024
or 256. Some of them are odd (like 3) or
even (like 2).
"""

def result = (text =~ /d+/).findAll()

assert result == ["1024", "256", "3", "2"]

获取特定匹配的内容(using named group)

def matcher = "JIRA-231 lorem ipsum dolor sit amet" =~ /^(?<jira>[A-Z]{2,4}-d{1,3}).*$/
matcher.matches() // 必须执行该方法,才能从 group() 中取值

assert matcher.group("jira") == "JIRA-231" 
assert matcher.replaceAll('Found ${jira} ID') == 'Found JIRA-231 ID'

相关文章

「Apache Groovy」- 运行 Shell 命令
「Groovy」- 彩色化输出日志
「Groovy」- 处理 Object 与 JSON String 之间的转换
「Groovy」- 操作 HTML 文档
「Groovy」- 连接数据库(使用 MySQL 演示)

参考文献

Groovy Regular Expressions - The Definitive Guide
Groovy Regular Expressions - The Definitive Guide (Part 1)
Regex in Groovy to accept multiple lines - Stack Overflow

最后

以上就是落后秀发为你收集整理的「Groovy」- 正则表达式 @20210409的全部内容,希望文章能够帮你解决「Groovy」- 正则表达式 @20210409所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部