#!/usr/bin/perl -w use strict; my $txt = "just wondering how i can have perl display part of my long memo. basically i want the first lets say 255 charachters of the paragraph. im really new to perl so i don't know how i would come about this? a regex perhaps? just started reading about that today. so basically something like"; my $n = 20; $txt =~ m/(.{$n})/gs; print $1; #### #!/usr/bin/perl -w use strict; my $txt = "just wondering how i can have perl display part of my long memo. basically i want the first lets say 255 charachters of the paragraph. im really new to perl so i don't know how i would come about this? a regex perhaps? just started reading about that today. so basically something like"; my @a = split("",$txt); for (my $i=0; $i<20; $i++) { print $a[$i]; }