Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread Paul McGuire
"softwindow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > the re module is too large and difficult to study > > i need a detaild introduction. > Sorry, but your post just sounds too much like it's in the "I'm too lazy to figure this out for myself, just spoon-feed me the answer" c

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread John Salerno
softwindow wrote: > the re module is too large and difficult to study > > i need a detaild introduction. I don't know what your experience has been so far, but I have almost no programming experience beyond what I've taught myself, and I found the re module very easy to understand after reading

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread gene tani
softwindow wrote: > the re module is too large and difficult to study it's powerful, takes a little time to work with. Make yourself aware of the VERBOSE switch, RE debuggers in komodo and Wing, string functions/methods and when you need a full parser, also http://www.awaretek.com/tutorials.htm

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread bruno at modulix
softwindow wrote: > the re module is too large and difficult to study Too bad. > i need a detaild introduction. That's fine. Then write it. Or pay someone to do so. Just for the record : that's the only answers you would have get on most usenet groups. Hopefully, c.l.py is a very friendly and t

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread Kent Johnson
softwindow wrote: > the re module is too large and difficult to study > > i need a detaild introduction. > http://www.amk.ca/python/howto/regex/ Kent -- http://mail.python.org/mailman/listinfo/python-list

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread Simon Brunning
On 18 May 2006 22:50:24 -0700, softwindow <[EMAIL PROTECTED]> wrote: > the re module is too large and difficult to study > > i need a detaild introduction. -- Cheers, Simon B, [EMAIL PROTECTED], http://www.brunningonline.net/simon/b

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread softwindow
thanks for your advice! :) -- http://mail.python.org/mailman/listinfo/python-list

Re: who can give me the detailed introduction of re modle?

2006-05-19 Thread vaibhav
easy and convenient way to get a good introduction for any module [especially if ur stuck and dont have internet connectivity]: 1. start python interpreter $ python 2. import the module and ask it for help :-) >>> import re >>> help(re) -vaibhav -- http://mail.python.org/mailman/listinfo/pytho

Re: who can give me the detailed introduction of re modle?

2006-05-18 Thread Gary Herron
softwindow wrote: >the re module is too large and difficult to study > >i need a detaild introduction. > > > That's not the kind of question that's likely to get a useful response from an all volunteer newsgroup community, even one with as friendly a reputations as this one. Here's my suggest

who can give me the detailed introduction of re modle?

2006-05-18 Thread softwindow
the re module is too large and difficult to study i need a detaild introduction. -- http://mail.python.org/mailman/listinfo/python-list