在C#中,LastIndexOf
方法用于查找一個字符串在另一個字符串中最后一次出現的位置
using System;
class Program
{
static void Main()
{
string mainString = "這是一個很長的字符串,包含了一些重復的子字符串。";
string searchString = "子字符串";
int lastIndex = mainString.LastIndexOf(searchString);
if (lastIndex != -1)
{
Console.WriteLine($"子字符串 \"{searchString}\" 最后一次出現在位置: {lastIndex}");
}
else
{
Console.WriteLine($"子字符串 \"{searchString}\" 沒有在主字符串中找到。");
}
}
}
在這個示例中,我們在mainString
中查找searchString
(子字符串)最后一次出現的位置。LastIndexOf
方法返回子字符串在主字符串中最后一次出現的位置,如果沒有找到則返回-1。