zzfive03
Programmer
- Jun 11, 2001
- 267
I want to get rid of single quotes out of my string, It does not appear to be working. Should I be doing something differently than the example:
var temp = "Mark's House";
Re = new RegExp (/'/, 'gi');
temp = temp.replace(Re, '');
response.write (temp);
Thank you.
var temp = "Mark's House";
Re = new RegExp (/'/, 'gi');
temp = temp.replace(Re, '');
response.write (temp);
Thank you.