Answers for "regex to remove square brackets javascript"

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 "regex to remove square brackets javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language