python+postgresql:将字符串文字转换为正则表达式

发布于 2024-10-26 04:59:56 字数 469 浏览 2 评论 0原文

我想执行一个查询,其中使用正则表达式将列名与我的变量 s 进行匹配。 s 是一个字符串文字,可能包含诸如 ?*. 等内容。我想转换s 以便 ? 变成 .{0,3},以便其所有剩余的正则表达式符号保持文字,然后添加 .* 到最后。示例:

Hi -> Hi.*
Fo?ar -> Fo.{0,3}ar.*
F.a*rx -> F\.a\*rx.*
F.a?*rx -> F\.a.{0,3}\*rx

执行此操作的最佳方法是什么?大多数情况下,我不确定如何引用字符串文字,以便正则表达式符号不会被解释为正则表达式符号(例如 . -> \.)。

I want to execute a query where I match a column name using a regex to my variable, s. s is a string literal and may contain things like ?, *, ., etc. I want to convert s so that ? turns into .{0,3}, so that all of its remaining regex symbols remain literals, and then add .* to the end. examples:

Hi -> Hi.*
Fo?ar -> Fo.{0,3}ar.*
F.a*rx -> F\.a\*rx.*
F.a?*rx -> F\.a.{0,3}\*rx

What's the best way to do this? Mostly I'm unsure how to quote a string literal so the regex symbols aren't interpreted as regex symbols (e.g. . -> \.).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

抱猫软卧 2024-11-02 04:59:57
print '.{0,3}'.join(re.escape(part) for part in s.split('?')) + '.*'
print '.{0,3}'.join(re.escape(part) for part in s.split('?')) + '.*'
向日葵 2024-11-02 04:59:57

使用 re.escape(string) 方法。

其中指出:

返回包含所有内容的字符串
非字母数字反斜杠;这是
如果你想匹配一个很有用
任意文字字符串可能有
正则表达式元字符
它。

查看re 模块页面

Use the re.escape(string) method.

Which states:

Return string with all
non-alphanumerics backslashed; this is
useful if you want to match an
arbitrary literal string that may have
regular expression metacharacters in
it.

Check out the re module page.

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