I tried to split a string using the delimiter [.] and the list size after split is 3 which is wrong and it should be 9 which is wrong. How to ... ... <看更多>
The method takes a regular expression, not a string, and the dot has a special meaning in regular expressions. Escape it like so split("\\. java split method ... ... <看更多>