Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "use constant T => q{UK Mobile - Vodafone [GBRVF] [MSRN]};
    ...
    2 steps: a: 'UK Mobile - Vodafone [GBRVF'
    2 steps: b: 'UK_Mobile_Vodafone_GBRVF'
    1 step:     'UK_Mobile_Vodafone_GBRVF'
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $dest = q{UK Mobile - Vodafone [GBRVF] [MSRN]};
    ...
     print qq{'$dest'};
    "
    'UK_Mobile_Vodafone_GBRVF'
    
  3. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $dest = q{UK Mobile - Vodafone [GBRVF] [MSRN]};
    ...
     print qq{'$dest'};
    "
    'UK_Mobile_Vodafone_GBRVF'
    
  4. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $dest = q{UK Mobile - Vodafone [GBRVF] [MSRN]};
    ...
     print qq{'$dest'};
    "
    'UK_Mobile_Vodafone_GBRVF'