c#

c# lastindexof 如何处理空字符串

小樊
81
2024-11-24 00:06:34
栏目: 编程语言

在C#中,LastIndexOf方法用于查找一个字符串在另一个字符串中最后一次出现的索引

using System;

class Program
{
    static void Main()
    {
        string str = "这是一个测试字符串,包含空字符串和一个重复的单词。";
        string searchStr = "字符串";
        int lastIndex = str.LastIndexOf(searchStr, StringComparison.OrdinalIgnoreCase);

        if (lastIndex != -1)
        {
            Console.WriteLine($"找到 '{searchStr}' 在字符串 '{str}' 中最后一次出现的索引为: {lastIndex}");
        }
        else
        {
            Console.WriteLine($"在字符串 '{str}' 中未找到 '{searchStr}'");
        }
    }
}

在这个示例中,我们使用LastIndexOf方法查找子字符串"字符串"在目标字符串str中最后一次出现的索引。StringComparison.OrdinalIgnoreCase参数表示不区分大小写的比较。如果找到了子字符串,lastIndex将包含子字符串最后一次出现的索引;否则,它将等于-1。

0
看了该问题的人还看了