Help for this page

Select Code to Download


  1. or download this
    $_="|" x 5;
    @foo = split /\|/,$_;
    print scalar @foo; # prints 0
    
  2. or download this
    @foo = split /\|/,$_,-1