如何转义 <、> 和 & Oracle PL/SQL 中字符到 html 实体

发布于 2024-09-05 12:19:39 字数 311 浏览 5 评论 0 原文

我需要直接从 oracle PL/SQL 包发送 HTML 电子邮件。这几乎可以正常工作。

我遇到的问题是,从表中获取的一些数据包含 和类似的片段,这些片段有时会被处理作为 HTML 标签,即使不是,它们也总是被忽略并且从不显示。

因此,我需要在插入电子邮件正文之前转义此列。

有没有一个函数可以自动将html特殊字符转义为实体? 或者我是否需要手动replace('<', '&lt;', string)所有特殊字符?

I need to send HTML emails directly from oracle PL/SQL package. This works almost fine.

I have problem with the fact that some of the data fetched from a table contain things like <S>, <L>, and similar fragments, which sometimes ar treated as HTML tags, and even if not, they are always ignored and never displayed.

So, I need to escape this column before inserting into email body.

Is there a function to escape html special chars into entities automaticly?
Or do I need to replace('<', '<', string) manually all the special characters?

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

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

发布评论

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

评论(2

就是爱搞怪 2024-09-12 12:19:39

您可以使用 htf.escape_sc 函数:

SQL> select htf.escape_sc('Please escape <this> tag') from dual;

HTF.ESCAPE_SC('PLEASEESCAPE<THIS>TAG')
------------------------------------------------------------------
Please escape <this> tag

You can use the htf.escape_sc function:

SQL> select htf.escape_sc('Please escape <this> tag') from dual;

HTF.ESCAPE_SC('PLEASEESCAPE<THIS>TAG')
------------------------------------------------------------------
Please escape <this> tag
缘字诀 2024-09-12 12:19:39

还可以使用可以处理 clob 的 DBMS_XMLGEN.CONVERT。

示例:

select DBMS_XMLGEN.CONVERT('<foo>') from dual

详细信息: https://docs.oracle.com/cd /B19306_01/appdev.102/b14258/d_xmlgen.htm

Also available is DBMS_XMLGEN.CONVERT which can handle a clob.

Example:

select DBMS_XMLGEN.CONVERT('<foo>') from dual

Details: https://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_xmlgen.htm

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