in reply to Re: (Ovid) Re: ignoring empty returns from split
in thread ignoring empty returns from split

You're splitting by \S+, this is a capital S and means anything but whitespace.
This is probably not what you want, use a lowercase s.
  • Comment on Re: Re: (Ovid) Re: ignoring empty returns from split