Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: How to split a string into two lines, intelligently

by RMGir (Prior)
on Oct 09, 2008 at 22:46 UTC ( [id://716333]=note: print w/replies, xml ) Need Help??


in reply to How to split a string into two lines, intelligently

"Holy homework, Batman!"

What you're looking for is a way to search a string and replace, from the start of a string, a space that's as many as 50 characters in with a newline.

Now, if only perl had a mechanism to make this simple. And if only this mechanism had something called "quantifiers" you could use to specify your limit! Wouldn't that be nice?

Please, click on the link above and read the perlre manpage. I'm going to post an answer behind spoiler space, but you'll do better in the long run if you read and understand the fine manual.

$text=~s{^ # starting at the beginning of the string (.{1,50}) # capture up to 50 characters \s # followed by a space } {$1\n}x; # and replace it with what you captured followed +by a newline

Mike

Replies are listed 'Best First'.
Re^2: How to split a string into two lines, intelligently
by kweise (Novice) on Oct 10, 2008 at 15:21 UTC
    Not homework, just a perl beginner, trying to take user input from our company home page and get it printed nicely. At least I figured out how to use PDF::API2 myself. ;-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-24 22:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found