in reply to Scalar size limits
3. To seperate the big word by a space$_ = 'x' x 80; $_ .= 'y' x 100; s/((.){49})/$1-/g; print;
s/((.){49})/$1 /g;
substr($_,0,49) =~ s/$/-/ if length($_) > 50;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Scalar size limits
by fglock (Vicar) on Jun 26, 2003 at 16:32 UTC | |
by Anonymous Monk on Jun 26, 2003 at 16:39 UTC | |
by fglock (Vicar) on Jun 26, 2003 at 16:42 UTC | |
by Anonymous Monk on Jun 26, 2003 at 16:46 UTC | |
by fglock (Vicar) on Jun 26, 2003 at 16:51 UTC | |
by sulfericacid (Deacon) on Jun 26, 2003 at 17:23 UTC | |
|
Re: Re: Scalar size limits
by hardburn (Abbot) on Jun 26, 2003 at 16:25 UTC | |
by Anonymous Monk on Jun 26, 2003 at 16:30 UTC |