строка 3 столбец 89Вставляю такой код:
Что не так конвертируется?Код:Tab tab = instance.ActiveTab; if (tab.IsBusy) tab.WaitDownloading(); string text = tab.DomText; var regex = new System.Text.RegularExpressions.Regex(@"(?<=<a\ class="res-small__title"\ href=")https://.*?(?=")"); // Поиск всех совпадений var matchCollection = regex.Matches(text); for(var i = 0; i < matchCollection.Count; i++) { if (matchCollection[i].Success) project.Lists["URL"].Add(matchCollection[i].Value); }