bradxr
8/4/2018 - 9:34 PM

Remove Whitespace from Start and End

let hello = "   Hello, World!  ";
let wsRegex = /^\s*(.*\S)\s*$/;
let result = hello.replace(wsRegex, "$1");