Strings
方法:
char charAt(int index)
returns char value for the particular indexint length()
returns string lengthString substring(int beginIndex)
returns substring for given begin indexString substring(int beginIndex, int endIndex)
returns substring for given begin index and end indexString[] split(String regex)
returns splitted string matching regexint indexOf(int ch)
returns specified char value index