fork download
  1. #!/usr/bin/perl
  2. use strict;
  3. use warnings FATAL => 'all';
  4.  
  5. use Data::Dumper;
  6.  
  7. my @strings = (
  8. '$128.48 One Month TV Internet and Voice, 100GB of Fiber<sup>&dagger;</sup> Internet.',
  9. '$148.48 One Month TV Internet and Voice, 200GB of Fiber<sup>&dagger;</sup> Internet and a free movie rental from MoviePlex.'
  10. );
  11.  
  12. my @updated_strings = map { my $str = $_; $str =~ s/<sup>.+?<\/sup>/;/; $str; } @strings;
  13.  
  14. print 'UPDATED: ' . Dumper(\@updated_strings) . "\n";
Success #stdin #stdout 0.01s 21352KB
stdin
Standard input is empty
stdout
ORIG: $VAR1 = [
          '$128.48 One Month TV Internet and Voice, 100GB of Fiber<sup>&dagger;</sup> Internet.',
          '$148.48 One Month TV Internet and Voice, 200GB of Fiber<sup>&dagger;</sup> Internet and a free movie rental from MoviePlex.'
        ];

UPDATED: $VAR1 = [
          '$128.48 One Month TV Internet and Voice, 100GB of Fiber; Internet.',
          '$148.48 One Month TV Internet and Voice, 200GB of Fiber; Internet and a free movie rental from MoviePlex.'
        ];

ORIG1: $VAR1 = [
          '$128.48 One Month TV Internet and Voice, 100GB of Fiber<sup>&dagger;</sup> Internet.',
          '$148.48 One Month TV Internet and Voice, 200GB of Fiber<sup>&dagger;</sup> Internet and a free movie rental from MoviePlex.'
        ];