I have a string s = "a,,,". If I use ... SF.Split(s,",") the length of the returned list is 2. If I change to "s= a, , ," the returned length is 3. I would have thought both would have returned a length of 4. Am I missing something? (For comparison: Visual Basic Split Function returns 4.)