DekGenius.com
Home
(current)
Dictionary
BOOKS
LYRICS
CHORD
SCRIPT & CODE EXAMPLE
Karaoke language
Search
Go
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
COMMENT
Name
2+7 =
Submit