in reply to Re: regexp operator -- same mistake over and over again
in thread regexp operator -- same mistake over and over again

by analogy with +=
$foo ~= s/a/b/;
should be equivalent to
$foo = $foo ~ s/a/b/;
so maybe ~ should be a binary operator that returns the result of the substitution whereas ~= would apply the substitution to $foo