防止冷融合转义字符

发布于 2025-01-04 06:47:25 字数 151 浏览 1 评论 0原文

我有一个标准的 xml,其中包含一个类似“test & # 3 5 ; 4”的字符串(只需忽略空格)。现在,当我用 cffile.read 读取它时,该字符串变为“test#4”。有什么办法可以防止冷融合编码字符吗?我已经尝试更改 cffile.read 上的编码,但它不起作用。

I have a standard xml which contains a string like "test & # 3 5 ; 4"(just ignore the spaces). Now when I read it with cffile.read then this string becomes "test#4". Is there any way to prevent coldfusion to encoding characters? I already tried changing the encoding on cffile.read and it didn't work.

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

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

发布评论

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

评论(1

°如果伤别离去 2025-01-11 06:47:25

你只需要加倍你的散列,即:“test & ## 3 5 ; 4” - 类似于:

replace( yourstring , "##" , "####" , "all" )

You just need to double up your hash, ie: "test & ## 3 5 ; 4" - so something like:

replace( yourstring , "##" , "####" , "all" )

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