Html Regex-Don';t移除最后一个托架(CSV)

Html Regex-Don';t移除最后一个托架(CSV),html,regex,csv,Html,Regex,Csv,这是我的CSV,我想删除每行中的任何回车符(如上所示) 应该是这样的: 1234,hello,testing,this is a new line,00:22 1234,hello,testing,this is a new line,00:22 你能帮忙吗?到目前为止,我只有这些: 1234,hello,testing,this is a new line,00:22 1234,hello,testing,this is a new line,00:22 但它不起作用 这被称为“消极的背后

这是我的CSV,我想删除每行中的任何回车符(如上所示)

应该是这样的:

1234,hello,testing,this is
a new line,00:22
1234,hello,testing,this is
a new line,00:22
你能帮忙吗?到目前为止,我只有这些:

1234,hello,testing,this is a new line,00:22
1234,hello,testing,this is a new line,00:22

但它不起作用

这被称为“消极的背后看”:

(?!([0-9]:[0-9]\n)).(\n)

(?您正在进行搜索和替换吗?如果是,替换字符串是什么样子的?您的意思是什么?否。我只想从csv行中删除额外的新行回车…通常在使用正则表达式搜索/替换内容时,您指定“查找正则表达式”和“替换字符串”其中包含反向引用。如何知道哪一个是“最后一个”?
(?<![0-9]{2}:[0-9]{2})\R