英文: Is it possible to match a string with two equal parts and a separator 问题 我正在尝试创建一个正则表达式,可以匹配具有相等...
在Golang的正则表达式中匹配多个Unicode字符。
英文: Matching multiple unicode characters in Golang Regexp 问题 作为一个简化的例子,我想要将 ^⬛+$ 与 ⬛⬛⬛ 进行匹配,以得到匹配结果 ...
Golang – extract links using regex
英文: Golang - extract links using regex 问题 Golang - 使用正则表达式提取链接 我需要使用Go中的正则表达式从文本中获取所有在特定域名example.de...
将regexp.FindStringIndex的结果转换为字符索引。
英文: Convert regexp.FindStringIndex results to character indices 问题 regexp.FindStringIndex(s string, ...
如何在Go语言中使用正则表达式匹配特定范围内的所有内容?
英文: How to match everything in certain bounds using regexp in go? 问题 我的目标是获取一个go函数的内容。 从func开始,直到最后一...
正则表达式用于处理数字签名的多个条目。
英文: Regex to process multiple entries for a digital signature 问题 我在这里有正则表达式和相应的匹配输出: https://regexr....
用切片的值替换正则表达式匹配项
英文: Replace regular expression matches with values of a slice 问题 我的目标是替换字符串中正则表达式的匹配项。我的代码如下: func R...
在处理扁平文件中的十六进制、IP和时间戳值时,可以使用正则表达式。
英文: Regex to process hexadecimal, ip and timestamp values in a flat file 问题 输入字符串: IDVal 4273E6D162E...
如果字符串没有缩进,可以使用 Golang 的 split 函数进行分割。
英文: Golang split string if there is no indentation 问题 我有一个像这样的日志文件。 INFO [com.cplus.sdk.iso.module] ...
正则表达式捕获IP中的错误八进制数
英文: Regex catch bad octet in IP 问题 你好,有人能解释一下为什么IP地址的最后一个八位如果是01或001时,不能被这个正则表达式匹配到吗? (\.?)([2-9][5-...
119