public int LastIndexOf(char value) public int LastIndexOf(string value) public int LastIndexOf(char value,int startIndex) public int LastIndexOf(string value,int startIndex) public int LastIndexOf(char value,int startIndex,int count) public int LastIndexOf(string value,int startIndex,int count)
string str = "We are the world"; int size = str.LastIndexOf('e'); //size 的值为 9字符 e 在字符串 str 中最后一次出现的索引位置如下图所示。
图 1 字符e在字符串str中最后一次出现的索引位置
本文链接:http://task.lmcjl.com/news/16739.html