Hi Tom,

> a regex for "more than one whitespace". RegEx for whitespace is \s, but
> what would i use for "more than one"? \s+?

For more than one, I'd use

  \s\s+

-Jim

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to