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

Re: Counting characters in a string

by valentin (Abbot)
on Feb 06, 2004 at 14:40 UTC ( [id://327084]=note: print w/replies, xml ) Need Help??


in reply to Counting characters in a string

print map { "$_\n" } $string =~ /.{1,5}/g;

Replies are listed 'Best First'.
Re: Re: Counting characters in a string
by ysth (Canon) on Feb 06, 2004 at 16:02 UTC
    That will stop at every newline and continue again after it:
    $ perl -we'$string = "abcdef\nghijk\nlmno\npqr\nst\nu"; > print map { "$_\n" } $string =~ /.{1,5}/g;' abcde f ghijk lmno pqr st u
    You either want the //s flag on the match or some other way of dealing with newlines.
      thanks, you are right //s is fine for me.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (9)
As of 2024-04-23 17:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found