私はテキストを持っています
1
00:00:03,837 --> 00:00:07,170
Text1
2
00:00:08,875 --> 00:00:10,968
Tex2
3
00:00:11,010 --> 00:00:13,843
Text3
そして、私はそれをそのようにしたい
00:00:03,837 --> 00:00:07,170
Text1
00:00:08,875 --> 00:00:10,968
Tex2
00:00:11,010 --> 00:00:13,843
Text3
私はこれを試しました:
Match match = Regex.Match(loadedText, @"\d{1,4}\r\n");
if (match.Success)
{
for (int i = 0; i < match.Groups.Count; i++)
{
loadedText= loadedText.Replace(match.Groups[i].Value, "");
}
rtbLoaded.Text = loadedText;
}
Buそれは私にこの結果を与えます:
00:00:03,837 --> 00:00:07,170
Text1
2
00:00:08,875 --> 00:00:10,968
Tex2
3
00:00:11,010 --> 00:00:13,843
Text3
だからそれは一度だけです...私が間違っていることは何ですか?