in reply to Re: A Question on assigning variables from a big variable
in thread A Question on assigning variables from a big variable

=~ is not the "regular expression operator", for example:
$string =~ tr/a-z/A-Z/;
Notice that there is no regular expression involved in that example. Is the binding operator.