Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Counting number of characters in a string

by Anonymous Monk
on Mar 13, 2001 at 01:49 UTC ( [id://63981]=note: print w/replies, xml ) Need Help??


in reply to Counting number of characters in a string

@arrayToReceiveChars = split(//,$varHoldingString); $len = @arrayToReceiveChars; print $len;
  • Comment on Re: Counting number of characters in a string

Replies are listed 'Best First'.
Re^2: Counting number of characters in a string
by Anonymous Monk on Nov 19, 2009 at 16:45 UTC
    if you're not in a subroutine, doing a split in scalar context: $length=split(//, $string) acheives the same thing. Don't do this in a subroutine though, or else you'll clobber your @_.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://63981]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-19 05:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found