/ Published in: Perl
This code will remove leading whitespace from a string using Perl.
Expand |
Embed | Plain Text
$emailaddress =~ s/^\s+//;
You need to login to post a comment.
This code will remove leading whitespace from a string using Perl.
$emailaddress =~ s/^\s+//;
You need to login to post a comment.