duanlu6114 2017-12-11 12:18
浏览 778

如何取消转义的正则表达式?

I'm looking for the reverse of regexp.QuoteMeta. Is it there a such function?

I've tried to manually unescape it using strings.Replace("\", "", -1) but this is prone to error/unreliable as it doesn't work in all the cases(i.e. on excessive escaping or unicode).

I also tried to add some quotes and use strconv.Unquote (e.g. strconv.Unquote("+ "https:\/\/ad.doubleclick.net" +") ) but it errors out.

  • 写回答

1条回答 默认 最新

  • drelgkxl93433 2017-12-11 15:35
    关注

    Parse the string with the regexp/syntax package to get the unquoted string:

    func unquoteMeta(s string) (string, error) {
        r, err := syntax.Parse(s), 0)
        if err != nil {
            return "", err
        }
        if r.Op != syntax.OpLiteral {
            return "", errors.New("not a quoted meta")
        }
        return string(r.Rune), nil
    }
    

    playground example

    评论

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作