1
vote
What does the Perl substitution operator act on?
If in Q2 you mean to take a sub-string from $a, you might find this idiom useful:
($b) = $a =~ /(substring-to-match)/;
$b =~ s/regex-on-susbtring/result-string/;
A …
