in reply to Re: regex to remove all non a-z and spaces
in thread regex to remove all non a-z and spaces
I keep getting files named "this+is a test.html", "the+farmer saves the day" and "i+hate this stuff.html".$cleaned_search =~ s/[^a-z0-9 ]+//gi;
I thought it was the + so I removed it and the regex is still adding a + sign in my string when it wasn't there before. I also can't add any weird characters because it errors out when it tries to create the file. IE: if I used \ it said it failed to open on a closed filehandle or something.
So it seems this regex isn't working at all.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: regex to remove all non a-z and spaces
by muntfish (Chaplain) on May 16, 2005 at 08:56 UTC |