#!/usr/bin/perl use warnings; use strict; while (my $text = ) { $text =~ s/hello$//g; print $text; } __DATA__ hello world