thendal
Programmer
- Aug 23, 2000
- 284
Hi all!
I have replace first character in a string with null ie)
S344545 to 344545 ...
i tried some thing like this
$t=M23443;
@m=split(//,$t);
shift(@m);
$s=join('',@m);
print "$s";
i knew there is better one liner ...
Thank you.
I have replace first character in a string with null ie)
S344545 to 344545 ...
i tried some thing like this
$t=M23443;
@m=split(//,$t);
shift(@m);
$s=join('',@m);
print "$s";
i knew there is better one liner ...
Thank you.