Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

JavaScript Regex - Remove Whitespace from Start and End

let hello = "   Hello, World!  ";
let wsRegex = /^s+|s+$/g; 
let result = hello.replace(wsRegex, "");
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #JavaScript #Regex #Remove #Whitespace #Start #End
ADD COMMENT
Topic
Name
6+7 =