Help for this page

Select Code to Download


  1. or download this
    while (<FILE_HANDLE>){
      @items = split /,/;
      # do something with @items
    }
    
  2. or download this
    foreach ( @lines ){
      # split in here
    }