Строка поиска и чтение символов после и до
Следующий код находит указанные строки (server=") в файле
atic void Main(string[] args) { string fName = @"C:\Temp\MyFile"; StreamReader testTxt = new StreamReader(fName); string allRead = testTxt.ReadToEnd(); testTxt.Close(); string regMatch = "server="; if (Regex.IsMatch(allRead,regMatch)) { Console.WriteLine("found\n"); } else { Console.WriteLine("not found\n"); } The actual string in the file looks like server="HostName" Since I found the server=" how do I read the next characters until I run into (")? many thanks }
Что я уже пробовал:
Я уже гуглил это но безуспешно