Help for this page

Select Code to Download


  1. or download this
    $string = "123".\0.
              "1".\0.\0.\0.
              "23".\0.\0;
    
  2. or download this
    (undef, $value) = unpack("a$index A4", $string);
    
  3. or download this
    $value = substr($string, $index, 4);
    $value =~ s/\0//g;