I have an (see below) Ant copy task which successfully copies all lines that contain the 5 elements within the regexp pattern but these statements which end in ";" sometimes go over one line but these extra lines are not included. Is their a way to included these extra lines up to the closing ";"?
<copy file="${updates-dir}/updates.sql"
tofile="${updates-dir}/updates_filtered.sql">
<filterchain>
<linecontainsregexp>
<regexp pattern="BEGIN;|INSERT INTO|UPDATE|DELETE FROM|COMMIT;"/>
</linecontainsregexp>
</filterchain>
</copy>