Answers for "remove square brackets js"

1

remove square brackets from string javascript

//Use this regular expression to match square brackets or single quotes:
/[\[\]']+/g
//Replace with the empty string.
"['abc','xyz']".replace(/[\[\]']+/g,'')
Posted by: Guest on January-13-2021

Code answers related to "remove square brackets js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language