Code: ^(.*)(\r?\n\1)+$
-> Replace with \1
Replace with ` ` (nothing) in order to remove every singe line that ever had more than one copy, rather than removing the copy
Code: .*XYZ.*\r?\n
-> Replace with empty string
Can replace new lines with ,
to make a python list, for example.
Code: [\r\n]+
-> replace with X
Code: [^%]*XYZ
-> Replace with empty string
This will leave a lot of empty lines.
Code: ^(?:[\t ]*(?:\r?\n|\r))+
-> replace with nothing
Code: ^(.*)$
-> Replace: X\1Y
For example:
\(\1\)
{\1}
Code: ^.?(.*)
-> Replace: \1
Code: .{1}$
-> Replace: ` ` (nothing)
Code: X.*
-> Replace: ` ` (nothing)
Code: ^(.*)
-> Replace: {text}\1
Code: (.*)$
-> Replace: \1{text}
\d \[.+\]
.*[aeiou]ling\n
– Gerund or Present Participle
.*[aeiou]led\n
– Simple Past tense
.*[aeiou]ling\r\n
– Gerund or Present Participle
.*[aeiou]led\r\n
– Simple Past tense
\[..?\]
→ Replace: ` ` (nothing)