subStr(n,m) 取当前字符串的第n个字符起,往后的m个字符 例如:string a="HelloWorld!" a.subStr(0,2) == "He" a.subStr(0) == "HelloWorld!"