[ Skill ] 正则表达式 几种常用的使用方法

https://www.cnblogs.com/yeungchie/

最常用匹配

rexMatchp

  • rexMatchp("pattern" "targetString")
rexMatchp("^SHORT.+" "SHORT 1. net01 - net02 in BLOCK")    ; 匹配以 SHORT 开头(^),后接任意字符(.)一次或多次(+)的字符串。
; => t
rexMatchp("^CONNECT.+" "SHORT 1. net01 - net02 in BLOCK")
; => nil

rex 组合函数

1. rexCompile

  • rexCompile("pattern")
rexCompile("^SHORT.+")    ; 定义 pattern ( 模式 / 匹配关键字 ) 。
; => t

2. rexExecute

  • rexExecute("targetString")
rexExecute("SHORT 1. net01 - net02 in BLOCK")    ; 定义目标字符串 ( 被匹配 ) 。
; => t

3. rexSubstitute

  • rexSubstitute("outputType")
rexSubstitute("$")    ; $ 用来表示 pattern 匹配到的字符串。
; => "SHORT 1. net01 - net02 in BLOCK"

4. 分组匹配

  • 使用关键符号 "\\(pattern\\)" 来对 pattern 中的子 pattern 进行分组。
rexCompile("^\\(SHORT\\).+\\(net[0-9]+\\).+\\(net[0-9]+\\).+")    ; 3 个分组。
; => t
rexExecute("SHORT 1. net01 - net02 in BLOCK")
; => t
rexSubstitute("\\0")    ; \\0 与上面的 $ 相同。
; => "SHORT 1. net01 - net02 in BLOCK"
rexSubstitute("\\1 -> \\2 -> \\3")    ; \\ 接数字用来表示第几个分组。
; => "SHORT -> net01 -> net02"

Tips

上一篇:UE4插件 Skills Tree System 4.15-4.26


下一篇:华为云——开发者技能测评