Help for this page

Select Code to Download


  1. or download this
    print [ split(/:/,<FILEHANDLE>) ]->[3]
    
  2. or download this
    # this works:
    print ((split /:/, <FILEHANDLE>)[3]);
    
    # doesn't work (note the missing outer parenthesis):
    print (split /:/, <FILEHANDLE>)[3];