在C#中,IndexOf
方法用于查找一個字符串在另一個字符串中首次出現的位置。如果你想指定搜索范圍,可以使用IndexOf
方法的第二個參數,即startIndex
。startIndex
參數表示從指定索引處開始搜索子字符串。這里有一個例子:
using System;
class Program
{
static void Main()
{
string original = "Hello, I am a programming assistant.";
string searchString = "programming";
// 查找 searchString 在 original 中的位置,從索引 7 開始搜索
int index = original.IndexOf(searchString, 7);
if (index != -1)
{
Console.WriteLine($"The index of '{searchString}' is: {index}");
}
else
{
Console.WriteLine($"The string '{searchString}' was not found.");
}
}
}
在這個例子中,我們從索引7開始搜索searchString
(即"programming"),如果找到了,就輸出它的位置,否則輸出未找到的消息。