如何删除除字母数字、下划线和破折号之外的所有字符?

发布于 2024-11-09 00:42:02 字数 134 浏览 0 评论 0原文

我不是正则表达式专家:( 我试图从字符串中删除除字母数字、下划线和破折号之外的所有字符。 这是正确的语法吗?:

preg_replace("/[^a-z0-9_-]+/i", "", $string);

I'm not an expert with regex:(
I'm trying to to strip all characters from the string except for alpanumeric and underscore and dash.
Is this the correct syntax?:

preg_replace("/[^a-z0-9_-]+/i", "", $string);

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

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

发布评论

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

评论(3

神魇的王 2024-11-16 00:42:02

是的,但可以稍微优化一下:

preg_replace('/[^\w-]/', '', $string);

\w 匹配字母数字字符和下划线。如果您的语言环境允许,这还有一个额外的优点,那就是允许重音字符。

Yes, but it can be optimised slightly:

preg_replace('/[^\w-]/', '', $string);

\w matches alphanumeric characters and underscores. This has the added advantage of allowing accented characters if your locale allows.

谁的年少不轻狂 2024-11-16 00:42:02

你所拥有的看起来会起作用。您可能需要添加空格,因为它们不是字母数字字符:

preg_replace("/[^a-z0-9_-\s]+/i", "", $string);

What you have looks like it will work. You may want to add spaces since they're not an alphanumeric character:

preg_replace("/[^a-z0-9_-\s]+/i", "", $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文