Ok, how can i replace these chars " . + -" and any whitespace?
Garfield
8:45 pm on Feb 24, 2005 (gmt 0)
You have to 'escape' all characters that are valid regex characters. To do so, just add a backslash in front of the character. For example: \+ or \. Whitespace can be done by /w