my $string = "asdfghjkl"; if( $string =~ m{(.*)} ) { print $1, "\n"; } __END__ asdfghjkl