1. String s="s,s,s,s,,,,,,,";
    2. System.out.println(s.split(",").length); // 4
    3. System.out.println(s.split(",",-1).length); // 11