On 7/2/06, nkeric <[EMAIL PROTECTED]> wrote:
> I'm quite a newbie to regex, could the above code be done in a single
> line of regex replacing?

The fact that you've got three different regular expressions with
three different substitutions to do means that this needs to be three
logical operations. However, you can make this slightly easier on
yourself by building a dictionary of the patterns and substitutions,
then looping over it to do all the heavy lifting. For example:

sub_dict = {
    '[\s]+': ' ',
    '[-]+': '-',
    '[.]+': '.'
    }

for pat, sub in sub_dict.iteritems():
    decoded_string = re.sub(pat, sub, decoded_string)

This also has the advantage of making it easy to add new substitutions
later if you find you need them.

-- 
"May the forces of evil become confused on the way to your house."
  -- George Carlin

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to