my $regex = qr( '(' . join('|', map { quotemeta( $_ ) } keys %attributes_hash ) . ')' ); while () { s/$regex/$attributes_hash{ $1 }/g; print; }