英文:
Any way to escape a Go string in a regular expression?
问题
我想要匹配 ^(@|\s)*{{string}}:?
,其中{{string}}是动态定义的。它可能包含句点、破折号和其他任意字符,我真的需要对它进行转义。
PHP 提供了一个 preg_quote
方法,可以安全地转义所有特殊字符。我想知道 Go 是否提供了类似的功能。
英文:
I'm wanting to match ^(@|\s)*{{string}}:?
whereas {{string}} is dynamically defined. It may have periods and dashes and any number of things in it and I really need for it to be escaped.
PHP provides a preg_quote
method that escapes all special characters safely. I was wondering if Go provides any sort of analog.
答案1
得分: 65
regexp.QuoteMeta
完成了这个任务。
英文:
regexp.QuoteMeta
does the deed.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论