admin管理员组文章数量:1135141
When we have a string that contains space characters:
var str = ' A B C D EF ';
and we want to remove the spaces from the string (we want this: 'ABCDEF'
).
Both this:
str.replace(/\s/g, '')
and this:
str.replace(/\s+/g, '')
will return the correct result.
Does this mean that the +
is superfluous in this situation? Is there a difference between those two regular expressions in this situation (as in, could they in any way produce different results)?
Update: Performance comparison - /\s+/g
is faster. See here:
When we have a string that contains space characters:
var str = ' A B C D EF ';
and we want to remove the spaces from the string (we want this: 'ABCDEF'
).
Both this:
str.replace(/\s/g, '')
and this:
str.replace(/\s+/g, '')
will return the correct result.
Does this mean that the +
is superfluous in this situation? Is there a difference between those two regular expressions in this situation (as in, could they in any way produce different results)?
Update: Performance comparison - /\s+/g
is faster. See here: http://jsperf.com/s-vs-s
4 Answers
Reset to default 287In the first regex, each space character is being replaced, character by character, with the empty string.
In the second regex, each contiguous string of space characters is being replaced with the empty string because of the +
.
However, just like how 0 multiplied by anything else is 0, it seems as if both methods strip spaces in exactly the same way.
If you change the replacement string to '#'
, the difference becomes much clearer:
var str = ' A B C D EF ';
console.log(str.replace(/\s/g, '#')); // ##A#B##C###D#EF#
console.log(str.replace(/\s+/g, '#')); // #A#B#C#D#EF#
\s
means "one space", and \s+
means "one or more spaces".
But, because you're using the /g
flag (replace all occurrences) and replacing with the empty string, your two expressions have the same effect.
In a match situation the first would return one match per whitespace, when the second would return a match for each group of whitespaces.
The result is the same because you're replacing it with an empty string. If you replace it with 'x' for instance, the results would differ.
str.replace(/\s/g, 'x')
will return 'xxAxBxxCxxxDxEF '
while str.replace(/\s+/g, 'x')
will return 'xAxBxCxDxEF '
because \s
matches each whitespace, replacing each one with 'x', and \s+
matches groups of whitespaces, replacing multiple sequential whitespaces with a single 'x'.
+
means "one or more characters" and without the plus it means "one character." In your case both result in the same output.
本文标签: javascriptIs there a difference between sg and sgStack Overflow
版权声明:本文标题:javascript - Is there a difference between sg and s+g? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736807723a1953760.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
\s+
is faster, because it can replace chunks of whitespace, whilst\s
must replace each white space separately? – KooiInc Commented May 11, 2011 at 12:48