I want a regex to remove control characters (< chr(32) and > chr(126)) from 
strings ie.

line = re.sub(r"[^a-z0-9-';.]", " ", line)   # replace all chars NOT A-Z, a-z, 
0-9, [-';.] with " " 

1.  What is the best way to include all the required chars rather than list 
them all within the r"" ?
2.  How do you handle the inclusion of the quotation mark " ?

Cheers

Dinesh

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to