Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Counting the number of items returned by split without using a named array

by blazar (Canon)
on May 03, 2006 at 11:07 UTC ( [id://547120]=note: print w/replies, xml ) Need Help??


in reply to Re: Counting the number of items returned by split without using a named array
in thread Counting the number of items returned by split without using a named array

The =()= does work with matches:

$ perl -lpe '($_=()=/\s+/g)++' foo 1 bar baz 2 foo bar baz 3

But I would use split, especially with the smart behaviour provided by the default ' ' argument.

Replies are listed 'Best First'.
Re^3: Counting the number of items returned by split without using a named array
by Hue-Bond (Priest) on May 03, 2006 at 13:38 UTC

    That fails when input has leading or trailing blanks:

    $ perl -lpe '($_=()=/\s+/g)++' ## leading foo bar 3 $ perl -lpe '($_=()=/\s+/g)++' ## trailing foo bar 3 $ perl -lpe '($_=()=/\s+/g)++' ## both foo bar 4 $ _

    It's better to count ocurrences of actual elements (\S+):

    $ perl -wle 'print scalar (()=/\S+/g) for "a b c", " a b c", "a b c ", + " a b c "' 3 3 3 3 $ _

    Anyway I prefer split too, like salva++'s 0e0 solution.

    --
    David Serrano

      I know. My entire point was not to maintain a counter manually a' la

      ++$cnt while $str =~ /\s+/g;

      Well done to point out about \S anyway, since one often forgets about \S, \D and \W.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (9)
As of 2024-04-18 14:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found