让我们说我有一个数据样本,像这样:
Rzecz
+subst:sg:nom:f
dzieje
+subst:pl:nom:n
się
+qub
w
+prep:acc:nwok
Paryżu
+subst:sg:loc:m3
,
+interp
w
+prep:acc:nwok
因此,我希望它看起来像这样:
Rzecz+subst:sg:nom:f
dzieje+subst:pl:nom:n
się+qub
w+prep:acc:nwok
Paryżu+subst:sg:loc:m3
,+interp
w+prep:acc:nwok
如何在记事本++中实现此目的? 我试图找到“ \ r \ n +”并将其替换为“ +”,因为我发现了类似的线程,但是该解决方案对我不起作用。 您能帮我吗:>
答案 0 :(得分:1)
尝试以下操作:/var/www/vhosts/xxx/httpdocs/memberportal
替换为:git --git-dir ../../git/memberportal.git --work-tree . add .
git --git-dir ../../git/memberportal.git --work-tree . status
git --git-dir ../../git/memberportal.git --work-tree . commit -m "My message"
git --git-dir ../../git/memberportal.git --work-tree . push
请记住在替换框中勾选“正则表达式”。
您有一个演示here
答案 1 :(得分:0)
您列出的示例正在使用正则表达式。
Ctl + H带您进入搜索窗口
在替换字段中输入该行,然后点击搜索模式正则表达式。
看看是否行得通。
编辑:
我最接近的:
Find what:(.+)\R *(.*)
Replace with: \1\2
答案 2 :(得分:0)