in reply to Splitting a string... Duh?

After you Split the file into the array, you can easily print by using a foreach loop.
@cnID = split("/", $serverID); foreach $temp (@cdID) { print $temp . "\n"; }
This should print out everything from the array.

Originally posted as a Categorized Answer.