所以我试图替换一个简单的字符串
\r\n
Fixed all files in 0.001 seconds, 2.000 MB memory used\r\n
到目前为止,我有以下内容:
Fixed all files in (.*?), (.*?) memory used\\r\\n
但是无论如何尝试,我都无法指定第一行的\ r \ n我缺少了什么?
答案 0 :(得分:1)
通过转义反斜杠来匹配第一行的\r\n
,就像在memory used
之后进行操作一样,然后将换行符与\s
匹配,然后匹配原始RE:< / p>
\\r\\n\s+Fixed all files in (.*?), (.*?) memory used\\r\\n
什么都不替换,结果是空字符串: