在C#中,你可以使用string
類的IndexOf
方法來查找子串的位置。這個方法返回子串在字符串中首次出現(xiàn)的索引,如果沒有找到子串,則返回-1。
下面是一個示例代碼:
string str = "Hello, world!";
string subStr = "world";
int index = str.IndexOf(subStr);
if (index != -1)
{
Console.WriteLine($"子串 \"{subStr}\" 在字符串 \"{str}\" 中的位置是: {index}");
}
else
{
Console.WriteLine($"子串 \"{subStr}\" 在字符串 \"{str}\" 中未找到");
}
在這個例子中,IndexOf
方法返回了子串"world"
在字符串"Hello, world!"
中首次出現(xiàn)的位置,即7。因此,控制臺輸出了“子串 ‘world’ 在字符串 ‘Hello, world!’ 中的位置是: 7”。
你還可以使用IndexOf
方法的其他重載版本來查找子串在字符串中所有出現(xiàn)的位置。例如,IndexOf(string value, int startIndex)
方法從指定的起始索引開始查找子串。
int index = str.IndexOf(subStr, 7); // 從索引7開始查找子串