Regex

Vvafel

Client
Регистрация
24.12.2017
Сообщения
80
Благодарностей
35
Баллы
18
Is there any code in c # that will change my variable to regex? I need to look for a different text every time.
 

EtaLasquera

Client
Регистрация
02.01.2017
Сообщения
526
Благодарностей
112
Баллы
43
Код:
List <string> l = new List <string>(){
"myRegex1",
"myRegex2",
"myRegex3",
"myRegex4",
"myRegex5",
"myRegex6"
};


foreach (string r in l){
   Regex r1 = new Regex(r);
   Match m1 = r1.Match(project.Variables["httpPost"].Value);
   if (m1.Success){
     return(m1.Value.ToString());
   }
}
return "not found";
 
Последнее редактирование:

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)