Help for this page

Select Code to Download


  1. or download this
    15
    20
    25
    
  2. or download this
    use Fcntl qw(:seek);
    
    ...
    seek($fh, 3, SEEK_SET);
    print $fh '94';
    close($fh);
    
  3. or download this
    $foo = "ab cd ef";
    substr($foo, 3, 2) = "cat";
    say $foo;