I am using someone else's text parsing perl code and I'd like to make some modifications. Could someone explain what =~ symbol is doing?
$xmlfile =~ s/value="{(.*?)}"/'value="'.&subst($1).'"'/ge;
EDIT:
So I found this thread that explains part of the regex string.