Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var string = '<9x>This</9x> is some text that I <0q>want</0q> to show.'
var choices = new Array();
choices[0] = /<0q>(.*?)<\/0q>/;
choices[1] = /<h3>(.*?)<\/h3>/;
choices[2] = /<9x>(.*?)<\/9x>/;
var replacements = new Array();
replacements [0] = /(0q)$1(\/0q)/;
replacements [1] = /(h3)$1(\/h3)/;
replacements [2] = /(9x)$1(\/9x)/;
text.replace(choices,replacements);