Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #10750
| References | <CAN1FwxcUv4m6nomM5bVPogiL-2_2czUwm1oCwVXsg2pRUsH5RQ@mail.gmail.com> |
|---|---|
| Date | 2011-08-02 10:22 -0700 |
| Subject | Re: How to define repeated string when using the re module? |
| From | Chris Rebert <clp2@rebertia.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1792.1312305752.1164.python-list@python.org> (permalink) |
On Tue, Aug 2, 2011 at 9:20 AM, smith jack <thinke365@gmail.com> wrote:
> if it's for a single character, this should be very easy, such as
> c{m,n} the occurrence of c is between m and n,
>
> if i want to define the occurrence of (.*?)</div> how should make it
> done? ((.*?)</div>){1,3} seems not work, any method to define repeat
> string using python regex?
Don't parse HTML using regexes; use an HTML parser!
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags
Here's a survey of Python HTML parsing libraries:
http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/
Cheers,
Chris
--
http://rebertia.com
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: How to define repeated string when using the re module? Chris Rebert <clp2@rebertia.com> - 2011-08-02 10:22 -0700
csiph-web