S
Steve Dunn
Hi all,
Just a quick question for someone that might have the answer.
I need a regex that'll turn ? and * that are not in quotes into the regex
equivalant (? to .{1} and * to .*?)
For instance,
"ig*ore st?ff in qu*tes" t?p high*
would be:
"ig*ore st?ff in qu*tes" t.{1}p high.*?
So, to recap, a regex that'll replace * and ? into the regex equivalant.
Cheers!
Steve
Just a quick question for someone that might have the answer.
I need a regex that'll turn ? and * that are not in quotes into the regex
equivalant (? to .{1} and * to .*?)
For instance,
"ig*ore st?ff in qu*tes" t?p high*
would be:
"ig*ore st?ff in qu*tes" t.{1}p high.*?
So, to recap, a regex that'll replace * and ? into the regex equivalant.
Cheers!
Steve