#/usr/bin/perl -w use strict; my $text = "\n\tThe purpose of the applicant rating session is for you,\nthe applicant, to provide a sample of your\t\neffective teaching skills."; $text =~ s/\s+/ /g; # convert white space to a single space print $text;