Oracle 正则表达式:\Q\E 不起作用

发布于 2024-08-23 13:54:42 字数 88 浏览 6 评论 0原文

我发现\Q\E在oracle中不起作用。
oracle regex 的 \Q\E 的等效表达式是什么?

I found that \Q\E doesn't work in oracle.
What is the equivalent expression of \Q\E for oracle regex ?

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

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

发布评论

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

评论(3

梦纸 2024-08-30 13:54:42

在 Perl 中,\Q 启动特殊字符的自动转义,\E 停止此行为。因此,在 \Q \E 块中,点将被视为文字点而不是任何字符。

如果 Oracle 不支持这一点,那么只需转义该块中的任何特殊字符即可。

In Perl, \Q starts the automatic escaping of special characters and \E stops this behaviour. So within a \Q \E block, a dot would be treated as a literal dot rather than any character.

If Oracle doesn't support this, then just escape any special characters that would have been in the block.

帅气称霸 2024-08-30 13:54:42

这是一个老问题,但是使用 Java,您可以

Pattern.quote(yourString);

返回一个文字字符串。因此,字符串 . 将返回 \Q.\E,匹配器会将其视为句点。

This is an old question, but with Java you can do

Pattern.quote(yourString);

which returns a literal string. So the String . would return \Q.\E, which would be considered a period by the Matcher.

憧憬巴黎街头的黎明 2024-08-30 13:54:42

这是一个旧问题,但在 Oracle Database 11g 版本 11.2.0.1.0 中仍然是一个问题,而且我没有看到它在其他地方得到解决。因此,如果它对其他人有帮助,我的解决方案是:

从双重中选择虚拟人
其中 REGEXP_LIKE(dummy,REGEXP_REPLACE('X','([]\^.$|()[*+?{},])','\\\1'))

This is old, but still an issue in Oracle Database 11g Release 11.2.0.1.0, and I don't see it addressed elsewhere. So, in case it helps others, my solution is:

select dummy from dual
where REGEXP_LIKE(dummy,REGEXP_REPLACE('X','([]\^.$|()[*+?{},])','\\\1'))

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