in reply to RE: Re: Unexpected Array
in thread Unexpected Array
with a bunch of spaces. You are splitting on / /, which is a single space, which means you are going to get a lot of empty elements in your resulting list. You probably want to change your split statement to split on /\s+/, which will catch all whitespace between elements.some stuff some more stuff
|
---|