Why doesn't this replace all double quotes in a string with the letter
Q?
source.replace( /"([^"]*)"/g, "Q$1Q" );
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
Q?
source.replace( /"([^"]*)"/g, "Q$1Q" );
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
Comment