Help for this page

Select Code to Download


  1. or download this
    while (split(/[, ]+/, <DATA>))
    { print @_ }
    
  2. or download this
    #while (split(/[, ]+/, <DATA>))      # Edit: Sorry - ignore this
    while (@_ = split(/[, ]+/, <DATA>))  # Edit: I meant this
    { print @_ }
    
  3. or download this
    me@here.com
    those@there.comothers@there.com
    you@there.comthem@there.com