テキスト文字列で「hello world」の最後のインデックスを取得しようとしています。
string sourceText = "hello world. no yes what where hello world but not right in left hello world end of text";
string searchIndex = "hello world";
int index = sourceText.LastIndexOf(searchIndex);
if (index != -1)
{
Console.Write(index);
}
しかし、それは常に -1 を返します。