Search:

Type: Posts; User: Norm

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    1,778

    Re: Reading comma seperated text file

    The split() method returns a value (an array) that has the separated tokens.
    array = string.split(...);
  2. Replies
    4
    Views
    1,778

    Re: Reading comma seperated text file

    The String class's split() method will separate tokens on a line into separate elements in an array.
Results 1 to 2 of 2