How do I find possible matches using regular expression?

Paul McGuire ptmcg at austin.rr._bogus_.com
Thu Nov 23 04:14:06 EST 2006


"Andy" <icetortoise at gmail.com> wrote in message 
news:1164272307.978986.158810 at l39g2000cwd.googlegroups.com...
> Hi there,
>
> I'm trying to do some predicting work over user input, here's my
> question:
>
> for pattern r'match me', the string 'no' will definitely fail to match,
> but 'ma' still has a chance if user keep on inputting characters after
> 'ma', so how do I mark 'ma' as a possible match string?
>
> Thanks a lot,
>
> Andy
>
Maybe .startsWith might be more useful than re.match, since you are 
predicting user input based on characters that have been typed so far.

-- Paul 





More information about the Python-list mailing list