如何使用 PL/SQL-REGEXP_REPLACE 从字符串末尾删除 0D?
我想在 Oracle 10g 上的 PL/SQL 中使用 REGEXP_REPLACE 来从字符串中删除尾随的 HEX-0D。我从这个问题找到了正则表达式。
在 Perl 中,其内容如下:
$output =~ tr/\x{d}\x{a}//d;
或者
$output =~ s/\s+\z//;
How can Itranslate this to PL/SQL?
I want to use REGEXP_REPLACE
in PL/SQL on Oracle 10g to remove the trailing HEX-0D from a string. I found the regex from this question.
In Perl it reads as follows:
$output =~ tr/\x{d}\x{a}//d;
or
$output =~ s/\s+\z//;
How can I translate this to PL/SQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还拥有 RTRIM 功能
You also have the RTRIM function