in reply to Non- greedy regex question

With $xml set as
my $xml = '<bidListing bidId="1234">other stuff here</bidListing>more +stuff here<bidListing bidId="5678">other stuff here</bidListing>';
it works for me. I think that some sample data and better explanation of "it does not work" will help someone provide a solution. And have you considered using one of the xml modules instead of regex?

Replies are listed 'Best First'.
Re^2: Non- greedy regex question
by yuvanbala (Initiate) on Dec 03, 2010 at 06:49 UTC

    you can use XML::LibXML module for this work

    Thanks And Regards,
    yuvanbala