PHP preg_replace 的 JavaScript 等效项
我一直在寻找 PHP preg_replace
函数的 js 等效项,到目前为止我发现的只是 string.replace
。
但是我不知道如何将我的正则表达式转换为 JavaScript。这是我的 PHP 代码:
preg_replace("/( )*/", $str, $str);
因此,例如以下内容:
test test test test
变成:
test-test-test-test
任何人都知道我如何在 JavaScript 中做到这一点?
I've been looking for a js-equivalent for the PHP preg_replace
function and what I found so far is simply string.replace
.
However I'm not sure how to convert my regular expression to JavaScript. This is my PHP code:
preg_replace("/( )*/", $str, $str);
So for example the following:
test test test test
becomes:
test-test-test-test
Anyone knows how I can do this in JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
javascripts string.replace 函数也采用正则表达式:
http://jsfiddle.net/5yn4s/
javascripts string.replace function also takes a regular expression:
http://jsfiddle.net/5yn4s/
在 JavaScript 中,您可以将其写为:
顺便说一句,您确定您发布了正确的 PHP 代码吗?它宁愿是:
In JavaScript, you would write it as:
By the way, are you sure you've posted the right PHP code? It would rather be:
请参阅 javascript replace 函数参考。
在你的情况下,它类似于
But ,只替换一个空格。现在正在努力:)
See javascript replace function reference.
In your case it is something like
But that replaces only one space. Working on it now :)