Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一列数据以下列格式重复
name id birthdate .. . .
等等。我希望 Νotepad++ 通过使用([0-9]+)-+([0-9]+)-+([0-9]+)然后在其后插入一行而不更改实际日期来查找日期。但是当我进入([0-9]+)-+([0-9]+)-+([0-9]+)\n替换窗口时,它会将实际日期替换为([0-9]+)-+([0-9]+)-+([0-9]+). 任何帮助表示赞赏。
([0-9]+)-+([0-9]+)-+([0-9]+)
([0-9]+)-+([0-9]+)-+([0-9]+)\n
用这个:
查找内容:(\d+-\d+-\d+) 替换为:$1\n
(\d+-\d+-\d+)
$1\n