- charAt(index)
返回指定索引位置的字符- indexOf(searchString,startIndex)
返回子字符串第一次出现的位置,从startIndex开始查找,找不到时返回-1- lastIndexOf(searchString,startIndex)
从由往左找子字符串,找不到时返回-1
2024-04-10 22:05:48
- charAt(index)
返回指定索引位置的字符- indexOf(searchString,startIndex)
返回子字符串第一次出现的位置,从startIndex开始查找,找不到时返回-1- lastIndexOf(searchString,startIndex)
从由往左找子字符串,找不到时返回-1