`
zu14
  • 浏览: 469408 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类

你是否被C#/.Net的LastIndexOf 和 LastIndexOfAny 雷到过呢?

阅读更多

周末了,起得晚。爬起来,洗漱完毕打开电脑,习惯性的收MAIL,第一封就吸引了我,标题:

老兄,我发现了.NET里面string.LastIndexOfAny的一个逻辑性错误的BUG

我的第一反应: 这位兄弟又joking了 ,打开正文,一段再简单不过的代码:

string str = "+-这是一个综合使用确定子串位置的C#示例+-";

int iLastPos = str.LastIndexOfAny("+-".ToCharArray(), 0);
Console.WriteLine(iLastPos);

Console.ReadKey(true);
最后是问我,结果等于多少, 为什么?

我看了一下,然后就想当然的认为,这也太简单了,不就是最后一位嘛, str.Length – 1 呗! 不过,为了表示对这位兄弟的尊重,我还是运行了一下这个代码,显示的结果,让我大为surprise: 0

Why?   ,查之!!

LastIndexOfAny
报告在 Unicode 数组中指定的一个或多个字符在此实例中的最后一个匹配项的索引位置
Reports the index position of the last occurrence in this instance of one or more characters specified in a Unicode array.


重载1: String.LastIndexOfAny(char[] anyOf)
-------------------------------------------------------------------
参数
anyOf
    Unicode 字符数组,包含一个或多个要查找的字符。 
    A Unicode character array containing one or more characters to seek.

重载2:String.LastIndexOfAny ( char[] anyOf,  int startIndex)
------------------------------------------------------------------------------------
参数
anyOf
    Unicode 字符数组,包含一个或多个要查找的字符。 
   A Unicode character array containing one or more characters to seek. 

startIndex
    搜索起始位置。 
    The search starting position.

重载3: 和2类似,我就略掉了

返回值
此实例中最后一个匹配项的索引位置,在此位置找到 anyOf 中的任意字符;否则,如果未找到 anyOf 中的字符,则为 -1。
The index position of the last occurrence in this instance where any character in anyOf was found; otherwise, -1 if no character in anyOf was found.

备注

索引编号从零开始。
此方法从此实例的 startIndex 字符位置开始,从后向前进行搜索,直到找到 anyOf 中的一个字符或检查到第一个字符位置。该搜索区分大小写。
Index numbering starts from zero.
This method begins searching at the last character position of this instance and proceeds backward toward the beginning until either a character in anyOf is found or the first character position has been examined. The search is case-sensitive.

我上面加红的地方,是关键点,因为是 求LAST,所以逆向效率高,这是无可厚非的,问题就出在这里了,逆向搜索

重载2中,对startIndex 这个参数的说明是

startIndex
    搜索起始位置。 
    The search starting position

这就是说startIndex 是按正向的顺序来表示的,那就一目了然了,回到最初的问题:

string str = "+-这是一个综合使用确定子串位置的C#示例+-";

int iLastPos = str.LastIndexOfAny("+-".ToCharArray(), 0);
Console.WriteLine(iLastPos);

Console.ReadKey(true);

上面的代码中, 将 startIndex 设置为 0, 他的本意是搜索整个字符串!

但是因为 LastIndexOfAny 是逆向搜索的, 结果就成了 从 第一个 字符开始,向左搜索,结果就是匹配了第一个字符,返回了 0

如果要搜索整个字符串,正确的写法是

string str = "+-这是一个综合使用确定子串位置的C#示例+-";

int iLastPos = str.LastIndexOfAny("+-".ToCharArray(), str.Length - 1);
Console.WriteLine(iLastPos);

Console.ReadKey(true);

 

其实,如果看过 MSDN 上,关于 LastIndexOfAny 的那个sample的话,就一目了然了

LastIndexOf 和 LastIndexOfAny 是一样的逻辑,就不重复了

分享到:
评论

相关推荐

    asp.net的IndexOf,LastIndexOf,IndexOfAny和LastIndexOfAny的用法

    ***中的IndexOf、LastIndexOf、IndexOfAny和LastIndexOfAny是.NET框架提供的字符串处理方法,用于在给定的字符串中搜索子串或字符的位置,这些方法在C#编程语言中广泛应用。 IndexOf方法用于查找字符串中指定字符或...

    C#常用字符函数[借鉴].pdf

    `IndexOf`和`IndexOfAny`用来查找子字符串或字符在字符串中的位置,`LastIndexOf`和`LastIndexOfAny`则是找到最后出现的位置。`PadLeft`和`PadRight`分别用于在字符串的开头或末尾添加指定字符以达到特定长度,而`...

    C#字符串函数.pdf

    4. `LastIndexOf` 和 `LastIndexOfAny`: 类似于`IndexOf`,但这两个方法返回的是指定子字符串或字符在原字符串中的最后一次出现位置。 5. `PadLeft` 和 `PadRight`: 这两个方法用于在字符串的左侧或右侧填充指定的...

    常用数据结构与算法字符串PPT课件.pptx

    本课件主要介绍了几种在C#中比较和操作字符串的关键方法,包括`Compare`、`CompareTo`、`Equals`以及比较运算符`==`和`!=`。 1. **比较字符串** - **Compare方法**:这是一个静态方法,用于全面比较两个字符串的...

    第8章 操作字符和字符串

    - **IndexOfAny()**和**LastIndexOfAny()**:在字符串中查找指定字符数组中的任意字符。 **8.2.3 字符串的比较** - **String.Compare()**:比较两个字符串的大小,返回值表示它们的相对顺序。 **8.2.4 字符串的...

Global site tag (gtag.js) - Google Analytics