FFS\D46_24\43_2
最初の円記号と最後のアンダースコアの間のテキストを返したいような文字列がいくつかあります。上記の例の場合、D46_24\43
以下のコードを試しましたが、引数が範囲外の実行になります。
public string GetTestName(string text)
{
return text.Remove(
text.IndexOf("\\", StringComparison.InvariantCultureIgnoreCase)
,
text.LastIndexOf("_", StringComparison.InvariantCultureIgnoreCase)
);
}