I'm trying to get the time from input of html txt_URL but the array returns nothing.
Not sure where I went wrong. Any help is appreciated. Thanks!
input:
Deleting 11 files.
Details: Time Deleted = 01:16:30, Time Left = 00:00:00,
output:
01:16:30
string before = txt_URL.Value;
string after = Regex.Replace(before, @"[ =.]",",");
string[] strValues1 = after.Split(',');
Text2.Value = strValues1[7];