Say I have a text file with the following contents:

George::John::Megan
Bridget::Mike::Chris

The :: is obviously the delimiter.

I would then want to store each name into an array such
as:

Array(0)
Array(1)
Array(2)

any help would be appreciated..

Dan