YAML 中未解释的字符串
有没有办法在 YAML 文件中包含未解释的字符串?我的目标是拥有包含某些转义序列的正则表达式,例如 \w
。目前,Python 的 YAML 抱怨:发现未知的转义字符“w”
。
我知道我可以逃避它们,但这会混淆实际的正则表达式。有什么办法解决这个问题吗?
Is there a way to have uninterpreted strings within a YAML file? My goal is to have regular expressions that contain certain escape sequences like \w
. Currently, Python's YAML complains: found unknown escape character 'w'
.
I know I could escape them, but this is going to obfuscate the actual regular expression. Any way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
似乎使用单引号不会解释转义字符。
例如,
作品。
Appears that using single quotes doesn't interpret the escaped characters.
E.g.,
Works.
尝试使用文字标量语法?
Try using literal scalar syntax?