我想使用 C# 正则表达式替换匹配特定模式的字符串。我确实使用 Regex.Replace Function 尝试了各种正则表达式,但没有一个对我有用。谁能帮我建立正确的正则表达式来替换部分字符串。
这是我的输入字符串。正则表达式应该匹配以任何字符(甚至是换行符)开头的字符串,<message Severity="Error">Password will expire in 30 days
直到找到结束</message>
标记。如果正则表达式找到匹配的模式,那么它应该用空字符串替换它。
输入字符串:
<message Severity="Error">Password will expire in 30 days.
Please update password using following instruction.
1. login to abc
2. change password.
</message>