Help for this page

Select Code to Download


  1. or download this
    if( $string =~ m/MTV\s*=\s*(0x[a-f0-9]+)/i ) {
        print $1, "\n";
    }
    
  2. or download this
    if( $string =~ m/MTV\s*=\s*(0x[[:xdigit:]]+)/ ) {
        print $1, "\n";
    }