strings.FindRESubmatch
Syntax
strings.FindRESubmatch PATTERN INPUT [LIMIT]
Returns
[]string
Alias
findRESubmatch
默认情况下,findRESubmatch
找到所有匹配项。您可以使用可选的 LIMIT 参数限制匹配的次数。如果返回值为 nil,则表示没有匹配项。
在指定正则表达式时,使用原生的字符串字面量(反引号)而不是解释的字符串字面量(双引号),以简化语法。使用解释的字符串字面量时,必须转义反斜杠。
Go的正则表达式包实现了RE2语法。RE2语法可以理解为对PCRE所接受的语法进行了子集化,并带有一些注意事项。注意,RE2 \C
转义序列不受支持。
示例
{{ findRESubmatch `a(x*)b` "-ab-" }} → [["ab" ""]]
{{ findRESubmatch `a(x*)b` "-axxb-" }} → [["axxb" "xx"]]
{{ findRESubmatch `a(x*)b` "-ab-axb-" }} → [["ab" ""] ["axb" "x"]]
{{ findRESubmatch `a(x*)b` "-axxb-ab-" }} → [["axxb" "xx"] ["ab" ""]]
{{ findRESubmatch `a(x*)b` "-axxb-ab-" 1 }} → [["axxb" "xx"]]
实用示例
此 markdown:
- [Example](https://example.org)
- [Hugo](https://gohugo.io)
生成的 HTML 如下:
<ul>
<li><a href="https://example.org">Example</a></li>
<li><a href="https://gohugo.io">Hugo</a></li>
</ul>
为了匹配锚点元素,并获取链接目标和文本:
{{ $regex := `<a\s*href="(.+?)">(.+?)</a>` }}
{{ $matches := findRESubmatch $regex .Content }}
在上述代码中,$matches 的数据结构如下,以 JSON 格式显示:
[
[
"<a href=\"https://example.org\"></a>Example</a>",
"https://example.org",
"Example"
],
[
"<a href=\"https://gohugo.io\">Hugo</a>",
"https://gohugo.io",
"Hugo"
]
]
为了渲染 href
属性:
{{ range $matches }}
{{ index . 1 }}
{{ end }}
结果:
https://example.org
https://gohugo.io