Notepad ++ - RegEx - 数字和日期

时间:2016-11-22 14:57:12

标签: regex notepad++

我在NotePad ++中有以下文本,我正在尝试编写一个RegEx来查找和替换以下内容。

Find: #,##/ (Look for the pattern 2,10/)
Replace: #\r (at the comma replace with a new line, so the date starts on a new line)



 11/02/2016,18,54,61,13,37,05,2,10/29/2016,42,48,20,21,19,23,3,10/26/2016,48,56,02,16,03,24,2,10/22/2016,01,55,33,28,56,22,2,10/19/2016,43,63,16,38,10,23,2,10/15/2016,64,49,57,23,67,20,2,10/12/2016,34,44,30,16,37,16,2,

2 个答案:

答案 0 :(得分:0)

您似乎正在寻找捕获组:捕获应该使用换行符拆分的不同部分,并在替换模式中使用反向引用。

搜索(\d,)(\d+/)
替换$1\n$2

参见NPP截图:

enter image description here

答案 1 :(得分:0)

此正则表达式将起作用:(\d),(\d\d/)

替换为:\1\r\2

结果示例:

After "Replace All"