> Is it possible to solve the below, w/o making a re object?
> 
>>>> a
> 'Mary Had a Little Lamb'
>>>> p=re.compile('l',re.I)
>>>> re.sub(p,'-',a)
> 'Mary Had a -itt-e -amb'
> 
> I cannot figure how to se re.I w/o involving  p.

Would this work?
>>> re.sub('(?i)l', '-', a)

See http://docs.python.org/library/re.html#regular-expression-syntax , search 
for iLmsux, which provide flags inside the regex.

_______________________________________________
Tutor maillist  -  [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to