在正则表达式中忽略空格

7 浏览
0 Comments

在正则表达式中忽略空格

如何使用正则表达式捕捉除空格以外的所有内容

例如,我有 Hello World

使用什么正则表达式可以输出 HelloWorld

(我正在使用 Regex 和 PHP)

最好的问候

admin 更改状态以发布 2023年5月23日
0
0 Comments
0
0 Comments
preg_replace('/\s+/', '', $str)

,意为一个带粗体标签的文字“123”。

0