javx
Мой дом здесь!
- Регистрация
- 28 Авг 2015
- Сообщения
- 510
- Реакции
- 266
Для просмотра ссылки Войди
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Для просмотра ссылки Войди
string s = "{Hello world} Hello Mark! {bred Hello Tod} Bred Bred {bred bred Hello Silvia}";
string pattern = @"\G(?i)(?:[^{H]+|\{.*?\}|(?!Hello).)*+\KHello";
string target = "XXX";
Regex regex = new Regex(pattern);
string result = regex.Replace(s, target);
return result;
string s = "{Hello world} Hello Mark! {bred Hello Tod} Bred Bred {bred bred Hello Silvia}";
string pattern = @"\G(?i)((?>[^{H]+|\{.*?\}|(?!Hello).)*)(Hello)";
string target = "$1XXX";
Regex regex = new Regex(pattern);
string result = regex.Replace(s, target);
return result;