#!/usr/bin/perl use strict; use warnings; my $count = 1; my $enc = 0; my $id_str = "PLOC-IDENT"; my $title_str = "QUACKPROLOKOG==UNKNOWN-TITLE"; while (<>) { if (m{\A *}ms) { s{\Q$id_str\E}{friends-tv-excerpt-}; } elsif (m{\A *\Q$title_str\E}ms) { s{\Q$title_str\E}{Excerpt from the TV Show "Friends" - #$count}; $count++; } } continue { print; }