$rowfetch =~ s/['-]//g; #All chars inside the [ ] will be filtered out.
$rowfetch =~ m/(\w+), ?(.)/;
printf $fh lc($2.$1);
I got help building this regular expression yesterday, but I don't fully understand it.
It takes a name like Parisi, Kenneth and prints out kparisi
Knowns:
s/ = substitute
m/ = match
I tried searching for the rest but couldn't find anything that really helped explain it.
I also didn't understand how the =~ is supposed to evaluate to either true or false, yet in this situation, it is modifying the string.
