Oracle 正则表达式:\Q\E 不起作用
我发现\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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 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.
这是一个老问题,但是使用 Java,您可以
返回一个文字字符串。因此,字符串
.
将返回\Q.\E
,匹配器会将其视为句点。This is an old question, but with Java you can do
which returns a literal string. So the String
.
would return\Q.\E
, which would be considered a period by the Matcher.这是一个旧问题,但在 Oracle Database 11g 版本 11.2.0.1.0 中仍然是一个问题,而且我没有看到它在其他地方得到解决。因此,如果它对其他人有帮助,我的解决方案是:
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: