patternjavascriptCritical
Remove ALL white spaces from text
Viewed 0 times
fromtextremovespaceswhiteall
Problem
$("#topNav" + $("#breadCrumb2nd").text().replace(" ", "")).addClass("current");This is a snippet from my code. I want to add a class to an ID after getting another ID's text property. The problem with this, is the ID holding the text I need, contains gaps between the letters.
I would like the white spaces removed. I have tried
TRIM()and REPLACE() but this only partially works. The REPLACE() only removes the 1st space.Solution
You have to tell replace() to repeat the regex:
The g character makes it a "global" match, meaning it repeats the search through the entire string. Read about this, and other RegEx modifiers available in JavaScript here.
If you want to match all whitespace, and not just the literal space character, use
You can also use
.replace(/ /g,'')The g character makes it a "global" match, meaning it repeats the search through the entire string. Read about this, and other RegEx modifiers available in JavaScript here.
If you want to match all whitespace, and not just the literal space character, use
\s instead:.replace(/\s/g,'')You can also use
.replaceAll if you're using a sufficiently recent version of JavaScript, but there's not really any reason to for your specific use case, since catching all whitespace requires a regex, and when using a regex with .replaceAll, it must be global, so you just end up with extra typing:.replaceAll(/\s/g,'')Code Snippets
.replace(/ /g,'').replace(/\s/g,'').replaceAll(/\s/g,'')Context
Stack Overflow Q#6623231, score: 1862
Revisions (0)
No revisions yet.