Answers for "remove the empty space in benginging and end of string javascript"

13

js remove space before string

var str = "  Some text ";
str.trim();
// str = "Some text"
Posted by: Guest on May-27-2020
1

remove blank space javascript

str.replaceAll(/\s/g,'')

.replace(/ /g,'')
Posted by: Guest on May-07-2021

Code answers related to "remove the empty space in benginging and end of string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language