This should work shouldn't it?
<script language="JavaScript1.2">
var tString = "\"LOSING MY MIND!!!\"";
tString.replace(/"([^"]*)"/g, "$1"
document.write(""+tString+""
</script>
I'm losing my mind... I can't seem to isolate the double-quotes... any other character seems to work fine...
<script language="JavaScript1.2">
var tString = "\"LOSING MY MIND!!!\"";
tString.replace(/"([^"]*)"/g, "$1"
document.write(""+tString+""
</script>
I'm losing my mind... I can't seem to isolate the double-quotes... any other character seems to work fine...