不使用正则表达式将减号(-)替换为空白的问题

发布于 2024-11-19 05:36:12 字数 389 浏览 3 评论 0原文

我正在使用此正则表达式将某些字符替换为 "" 我将其用作

query=query.replace(/[^a-zA-Z 0-9 * ? :  . + - ^ "" _]+/g,'');

但是当我的查询为 +White+Diamond 时,我得到结果 +White+Diamond,但是当查询为 -White+diamond 时,我得到结果 +White+Diamond code> 我收到 White+diamond,这意味着 - 被我不想要的 "" 替换。 请告诉我有什么问题。

I am using this regex expression to replace some characters with ""
I used it as

query=query.replace(/[^a-zA-Z 0-9 * ? :  . + - ^ "" _]+/g,'');

But when my query is as +White+Diamond, i get result +White+Diamond, but when query is -White+diamond i am getting White+diamond, it means - is replaced by "" that i don't want.
Please tell me what is the problem.

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

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

发布评论

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

评论(2

暗藏城府 2024-11-26 05:36:12

在正则表达式中,- 表示“从 ... 到 ...”,用反斜杠转义 -\-

In regex, - means "from ... to ...", escape your - with a backslash: \-.

说谎友 2024-11-26 05:36:12

SteeveDroz 所说:

query=query.replace(/[^a-zA-Z0-9*?:.+\-^"_ ]+/g,'');

我假设您也想排除空格。如果不是,请从字符类中删除最后一个空格。

What SteeveDroz said:

query=query.replace(/[^a-zA-Z0-9*?:.+\-^"_ ]+/g,'');

I'm assuming you want to exclude spaces as well. If not, remove the final space from the character class.

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