\begin{Dean Hamstead}
> I would like to strip special characters
> eg. anything not A..Z a..z 0..9

 s/[^A-Za-z0-9]//g;

if you want to include "_" too, you can use:
 s/\W//g;

-- 
 - Gus


-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to