preg_replace:替换除以下内容之外的所有内容

发布于 2024-11-26 01:49:36 字数 325 浏览 1 评论 0原文

我想从以下字符串中删除一些不需要的字符。 这是代码。

 $input="aecąßÄ1,.!?-_'\"/><";  
    $input=preg_replace('/[^\p{P}\p{L}\p{N}\s]*/u', '', $input); 

该代码似乎工作正常,但特殊字符在输出中丢失。 这是我得到的。

   aec���1,.!?-_'"/  

而不是

 aecąßÄ1,.!?-_'"/  

为什么会这样?

I want to remove some unwanted characters from the following string.
Here's the code.

 $input="aecąßÄ1,.!?-_'\"/><";  
    $input=preg_replace('/[^\p{P}\p{L}\p{N}\s]*/u', '', $input); 

The code seems to be working fine but the special characters are lost in the output.
Here's what I get.

   aec���1,.!?-_'"/  

Instead of

 aecąßÄ1,.!?-_'"/  

Why is it so?

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

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

发布评论

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

评论(1

愁杀 2024-12-03 01:49:36

根据评论进行编辑:

尝试使用“真实”字符:

$input=  preg_replace('/[^aecąßÄ1,.!?-_\'\"\/]/', '', $input);

最后一个答案:

如果您想删除不需要的字符,您可以使用更简单的正则表达式删除该字符:

$input= "aecąßÄ1,.!?-_'\"/><";
$input=  preg_replace('/[<>]/', '', $input);

只需将特殊字符放在正则表达式中的 [ ] 之间即可。这适用于您的情况。

EDIT based on comment:

Try to use "real" characters:

$input=  preg_replace('/[^aecąßÄ1,.!?-_\'\"\/]/', '', $input);

last answer:

If you want to remove unwanted characters, you can remove that characters with much simpler regex:

$input= "aecąßÄ1,.!?-_'\"/><";
$input=  preg_replace('/[<>]/', '', $input);

Just put that special characters between [ ] in regex. This will works in your case.

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