#!/usr/bin/perl use strict; use warnings; my $currentSentence = "The big dog rolled in an open field filled with a type of grass."; $currentSentence =~ s/[\ba\b|\ban\b|\bthe\b]//g; print "[$currentSentence]\n"; exit;