我已经用尽了我的搜索,需要帮助。我是正则表达式的新手,并且设法从多行字符串中提取单词,但不是整行。我将文本拉入字符串,但我无法找到下一行。
示例字符串有多行(字符串 multipleLines):
Authentication information
User information:
domai n\username
Paris
我需要在“用户信息”行之后获取文本“域\用户名”。
我尝试了许多正则表达式组合,但无法使其正常工作。例子:
string topLine = "Authentication information";
label.Text = Regex.Match(multipleLines, topLine + "(.*)").Groups[1].Value;
我还尝试使用:topLine + "\n" 在获取身份验证信息行后,我应该添加什么来查看整个下一行?