S
squash
I have some strings that have trailing whitespaces which this regex is
not matching:
$string =~ s/\s+$//; ## Remove trailing white spaces
I have tried \n and \t but with no luck. What could those whitespaces
be?
Thx!
not matching:
$string =~ s/\s+$//; ## Remove trailing white spaces
I have tried \n and \t but with no luck. What could those whitespaces
be?
Thx!