本文介绍了(正则表达式)2Liner→1Liner的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在此先感谢您,英语不好!
Thank you in advance and sorry for the bad english!
我想要
'奇数行''CRLF''偶数行'CRLF'→'奇数行'','偶数行''CRLF'
'Odd rows' 'CRLF' 'Even rows' CRLF' → 'Odd rows' ',' 'Even rows' 'CRLF'
示例输入:
0
SECTION
2
HEADER
所需的输出:
0,SECTION
2,HEADER
我尝试过的事情:
Find: (.*)\n(.*)\n
Replace: $1,$2\n
我想要ー轻松看到dxf
I want ー Easy to see dxf
推荐答案
对于您的示例数据,您可以在捕获组1中捕获一个或多个数字,然后匹配换行符.
For you example data you could capture one or more digits in capturing group 1 followed by matching a newline.
在替换使用组1中,后跟逗号.
In the replacement use group 1 followed by a comma.
匹配
(\d+)(?:r?\n|\r)
替换
$1,
这篇关于(正则表达式)2Liner→1Liner的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!