仅当下一行以“(”开头时,才尝试删除行尾的“\n”

Try to delete the '\n' at the end of line only if the next line begins with '('

我正尝试在 Natepad++ 上使用正则表达式来修改一些文本。

仅当下一行以“(”开头时才尝试删除行尾的“\n”

示例:更改

This is a line
(Note)

This is a line(Note)

我的正则表达式正在用 ( 替换 \n^(\n(。但它不会起作用。

尝试一下: 查找内容:$\R(
替换为:\(

您需要用斜杠转义方括号:\(.

因此您需要将 \r\n\( 替换为 \(