I have a big string array and string like that:
string[] array = new string[3264];
array = {"00:00:45,104","00:01:04,094","01:43:24,001"....};
string str = "00:00:13,614 /n rose /n 00:01:14,001...",
I have same amount of time in string and array. I want to change these values. For example new string must be:
str = "00:00:45,104 /n rose /n 00:01:04,094 ...";
I mean times change for array's element. I think i can find times in string:
var mL = Regex.Matches(subtitle, @"(\d{2}:\d{2}:\d{2},\d+)", RegexOptions.Multiline);
But I don't know how can I change them.
rosecame from? if you put them in another array too you can achieve what you want pretty easy..sub?