gpt4 book ai didi

c# - 为什么 C# 的 LastIndexOf 会这样?

转载 作者:太空宇宙 更新时间:2023-11-03 23:00:22 25 4
gpt4 key购买 nike

我有以下代码:

string s = "Hello, World!";
Console.WriteLine(s.LastIndexOf("World"));//7
Console.WriteLine(s.LastIndexOf("World", 7));//-1

为什么第二次调用 LastIndexOf 的结果是 -1 而不是 7?

最佳答案

来自 MSDN :

The search begins at the startIndex character position of this instance and proceeds backward toward the beginning until either value is found or the first character position has been examined. For example, if startIndex is Length - 1, the method searches every character from the last character in the string to the beginning.

由于向后搜索,所以在 7 之前没有包含 World 的索引。

关于c# - 为什么 C# 的 LastIndexOf 会这样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43366709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com