http://qs1969.pair.com?node_id=43340


in reply to Re: Using regexps to parse an XML DTD file
in thread Using regexps to parse an XML DTD file

Excellent, thanks - out of interest though, can it be done with a single regexp?

Nick.
  • Comment on Re: Re: Using regexps to parse an XML DTD file

Replies are listed 'Best First'.
Re: Re: Re: Using regexps to parse an XML DTD file
by merlyn (Sage) on Nov 26, 2000 at 07:50 UTC
    A single regex cannot generate a variable number of backreferences. What do you think this is, Java? 1{grin}

    -- Randal L. Schwartz, Perl hacker

    1The Java regex library I saw caused /(\w+)\s+)+/ to generate a variable number of backreferences, making it impossible to know exactly what part of the match you were looking at. Evil. They just don't get it.