in reply to Altering an array with grep & map

open(FILE, "<file.htm") @file = map { s:(href|src)=":$1="../:g; $_ } <FILE>; close(FILE);
Update:
removed typos.

holli, regexed monk