Mar 8, 2003 #1 c4n Programmer Mar 12, 2002 110 SI How can I return the number of characters (including spaces) in a phrase the easiest/fastest way in Perl? Thanks
How can I return the number of characters (including spaces) in a phrase the easiest/fastest way in Perl? Thanks
Mar 9, 2003 #2 Haunter Programmer Jan 2, 2001 379 US $somevariable = "12345'; $length = length $somevariable; print $length; HTH Upvote 0 Downvote