http://www.perlmonks.org?node_id=672352


in reply to regex help humbly sought

Hi charlie_pi

you can try like this,

use strict; local $/;#####To read the whole content of a file while(<DATA>){ while($_=~/\(\!-- #BeginEditable \"([^"]*)" --\)(.*?)\(\!-- #EndEd +itable --\)/sgi){ print "IN:$1:$2\n"; ##do your stuffs here } }

Punitha