如何使用 JavaScript 字符串替换方法来替换 '+'符号?

发布于 2025-01-07 01:20:46 字数 347 浏览 0 评论 0原文

您需要知道的一切都在问题中。我的 URL 中有一个搜索查询,如下所示:

http://www.mysite。 com?param=word1+word2+word3

到目前为止,我可以检索“word1+word2+word3”,但我似乎无法使用以下内容:

document.write(str.replace(/+/g," "));

我希望最终输出如下所示:“word1 word2 word3”

感谢您的浏览。

All you need to know is in the question. I have a search query in the URL that looks like this:

http://www.mysite.com?param=word1+word2+word3

So far, I can retrieve "word1+word2+word3" but I can't seem to use something like:

document.write(str.replace(/+/g," "));

I want the final output to look like this: "word1 word2 word3"

Thanks for looking.

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

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

发布评论

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

评论(5

过潦 2025-01-14 01:20:46

尝试使用转义字符 \ 转义 + 符号,因为它是受限制的字符:

document.write(str.replace(/\+/g," "));

http://www.regular-expressions.info/javascript.html

Try to escape the + sign using the escape char \ since is a restricted char:

document.write(str.replace(/\+/g," "));

http://www.regular-expressions.info/javascript.html

喜爱纠缠 2025-01-14 01:20:46

+ 是正则表达式中的一个特殊字符,如果你想按字面匹配它,你必须转义它。所以尝试:

document.write(str.replace(/\+/g," "));

The + is a special character in regex, if you want to match it literally you have to escape it. So try:

document.write(str.replace(/\+/g," "));
平定天下 2025-01-14 01:20:46

您必须转义 + 符号,它在正则表达式中具有特殊含义。

document.write(str.replace(/\+/g," "));

You have to escape the + sign, it's has special meaning in Regexes.

document.write(str.replace(/\+/g," "));
清晨说晚安 2025-01-14 01:20:46

怎么样使用 split() 函数,这似乎对于这种情况要简单得多:

document.write(str.split(",", " ");

How about using the split() function, that seems to be much simpler for this case:

document.write(str.split(",", " ");
自此以后,行同陌路 2025-01-14 01:20:46

尝试使用十六进制值

document.write(str.replace(/[\u002B]/g," "));

Try with the hex value

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