Subject: | Feature request: $e->attr ("xxx") as lvalue sub |
I'd like to see lvalue functionality in e.g. $e->attr (), so I could do
$e->attr ("href") =~ s{external\.server\.com}{internal.proxy.local}
or anything like that instead of
my $href = $e->attr ("href");
$href =~ s{...}{...};
$e->attr ("href", $href);