if ( $str =~ /^Title: (.*)\s+Author: (.*)\s+ISBN: (.*)/ ) { my ($title, $author, $isbn) = ($1,$2,$3); $author =~ s/\.//g; # Remove full stops print "<$title><$author><$isbn>"; # Do more stuff... }