YAML 中未解释的字符串

发布于 2024-11-27 10:27:53 字数 166 浏览 0 评论 0原文

有没有办法在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

病毒体 2024-12-04 10:27:53

似乎使用单引号不会解释转义字符。

例如,

key1: [ 'tron' ]
key2: [ 'not/escaped/[\w-]*/.*' ]

作品。

Appears that using single quotes doesn't interpret the escaped characters.

E.g.,

key1: [ 'tron' ]
key2: [ 'not/escaped/[\w-]*/.*' ]

Works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文