PHP-十六进制字符上的 preg_replace

发布于 2025-01-01 07:40:26 字数 398 浏览 0 评论 0原文

我有一个字符串,如下所示:

'Via Universit\E0 4'

Whit HEX char...我需要字符串变为:

'Via Università 4'

所以,我使用:
$text= preg_replace('/(\\\\)([a-f0-9]{2})/imu', chr(hexdec("$2")), $text);

但不起作用,因为 hexdec 不使用 $2 的值(即“E0”),而仅使用值“2”。 所以 hexdex("2") 是 "2" 而 chr("2") 不是 "à"

我能做什么?

i have a string, like this:

'<indirizzo>Via Universit\E0 4</indirizzo>'

Whit HEX char... i need string become:

'<indirizzo>Via Università 4</indirizzo>'

So, i use:
$text= preg_replace('/(\\\\)([a-f0-9]{2})/imu', chr(hexdec("$2")), $text);

But dont work because hexdec dont use value of $2 (that is 'E0'), but use only value '2'.
So hexdex("2") is "2" and chr("2") isnt "à"

What can i do?

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

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

发布评论

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

评论(3

失退 2025-01-08 07:40:26
$text='<indirizzo>Via Universit\E0 4</indirizzo>';

function cb($match) {
    return html_entity_decode('&#'.hexdec($match[1]).';');
}
$text= preg_replace_callback('/\\\\([a-f0-9]{2})/imu', 'cb', $text);

echo $text;
$text='<indirizzo>Via Universit\E0 4</indirizzo>';

function cb($match) {
    return html_entity_decode('&#'.hexdec($match[1]).';');
}
$text= preg_replace_callback('/\\\\([a-f0-9]{2})/imu', 'cb', $text);

echo $text;
柠檬心 2025-01-08 07:40:26

您需要将 chr(hexdec()) 指定为回调。仅调用这些函数并将结果作为参数提供给 preg_replace 并不能做到这一点。

preg_replace_callback('/\\\([a-f0-9]{2})/imu',
                      function ($match) { return chr(hexdec($match[1])); },
                      $text)

话虽如此,可能有更好的方法来完成您总体想做的事情。

You need to specify your chr(hexdec()) as a callback. Just calling those functions and suppling the result as parameter to preg_replace doesn't do it.

preg_replace_callback('/\\\([a-f0-9]{2})/imu',
                      function ($match) { return chr(hexdec($match[1])); },
                      $text)

Having said that, there are probably better ways to do what you want to do overall.

丢了幸福的猪 2025-01-08 07:40:26

你也可以使用

<?php
$str = preg_replace('/\\([a-f0-9]{2})/imue', '"\x$1"', '<indirizzo>Via Universit\E0 4</indirizzo>');

You could also use

<?php
$str = preg_replace('/\\([a-f0-9]{2})/imue', '"\x$1"', '<indirizzo>Via Universit\E0 4</indirizzo>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文