http://www.perlmonks.org?node_id=375498


in reply to Re: In search of a better way to trim string length
in thread In search of a better way to trim string

Thanks, Dave!

I ran your code as is, but it doesn't quite give me the reuslts I was expecting. Maybe I'm missing something?

  • Comment on Re^2: In search of a better way to trim string length

Replies are listed 'Best First'.
Re^3: In search of a better way to trim string length
by davido (Cardinal) on Jul 19, 2004 at 15:34 UTC
    Maybe I'm missing something?

    Only that I was just providing a starting point to illustrate a method. I figured you would tweak it to meet your needs. But in fairness, I should have provided an answer that produced exactly what you were looking for. I've modified my answer to do what I think your question was asking, and will paste it below...

    The problem with my original (I think) was that it broke your original string into substrings of 'n' characters. What you were looking for was simply truncation, with trailing '...' elipses. Here ya go...

    use strict; use warnings; my $len = 40; print "0123456789012345678901234567890123456789\n"; while ( my $string = <DATA> ) { chomp $string; $string =~ s/((?:.{0,$len}(?=\s|$))|(?:\S{$len}))(?:.+$)?/$1.../s; print "$string\n"; } __DATA__ Now is the time for all good men to come to the aid of their country. Nowisthetimeforallgoodmentocometotheaidoftheircountry.

    Hope this helps.


    Dave