I am trying to remove multiple spaces by using below codes,its removing   also, but its not working for character N B S P.....
replace(SPACE, " ").replace(/^[\s\t\n\ \;]+|[\s\t\n\ \;]+$/g, '');
|
I am trying to remove multiple spaces by using below codes,its removing   also, but its not working for character N B S P.....
|
|||||||
|
|
Try:
|
|||
|
|
|
Try |
|||
|
|
|
To replace leading and trailing white-space and
The reason by
which also matches characters Also note that In case if you want to delete all whitespace characters and all
|
||||
|
|
|
Could be less complex imho:
With this RegExp/replace all instances of spaces/ -s are replaced with an empty string.
An even shorter form would be:
Wikipedia is your friend |
||||
|
|