Answers for "strip html tags from string js"

3

js strip_tags

let strippedString = originalString.replace(/(<([^>]+)>)/gi, "");
Posted by: Guest on October-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language