Help for this page

Select Code to Download


  1. or download this
    my $line = "Stopping saslauthd: \x1b[60G[\x1b[0;31mFAILED\x1b[0;39m]\r
    +";
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $noesc = $line;
    $noesc =~ s/(\e\[\d+G|\e\[\d+(;\d+)*m|\r*)//g;
    print "noesc = '$noesc'\n";
    
  3. or download this
    $noesc =~ s/(\e\[\d+G|\e\[\d+(;\d+)*m|\r*)//g;