Help for this page

Select Code to Download


  1. or download this
    while (<DB>) {
        @_ = split/[\t|,|\||\n]/;         # here things go accidently righ
    +t ;-)
        $data{ $_[0] } = { @_[1..$#_] };
    }
    
  2. or download this
    @_ = split /\t|,|\|\n/;
    
  3. or download this
    @_ = split /[\t\n,|]/;
    
  4. or download this
    @_ = split /[\s,|]+/;