notepad++ 将以小写字母开头的行内容合并到上一行结尾

- 办公软件

从 web 终端中复制如下内容,可以发现由于终端对文本输出有限制,本来是在一行的内容全部被截取换行了。并且我复制出来后并没有恢复,保留了换行符导致我查看日志不方便。

现有数据

WARN 2023-07-07 19:35:24.696 main AbstractClassEnhancePluginDefine : enhance class org.springframework.web.client.RestTemplate by plugin org.apache.skywalking.apm.plugin.spring.resttemplate.sync.define.RestTempl
ateInstrumentation3x is not activated. Witness class org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer does not exist. 
WARN 2023-07-07 19:35:30.796 main AbstractClassEnhancePluginDefine : enhance class org.springframework.web.client.AsyncRestTemplate by plugin org.apache.skywalking.apm.plugin.spring.resttemplate.async.define.Res
tTemplateInstrumentation3x is not activated. Witness class org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer does not exist. 
WARN 2023-07-07 19:35:32.013 main AbstractClassEnhancePluginDefine : enhance class springfox.documentation.swagger2.web.Swagger2ControllerWebFlux by plugin org.apache.skywalking.apm.plugin.spring.mvc.v4.define.R
estControllerInstrumentation is not activated. Witness class org.springframework.cache.interceptor.DefaultKeyGenerator does not exist. 
WARN 2023-07-07 19:35:32.013 main AbstractClassEnhancePluginDefine : enhance class springfox.documentation.swagger2.web.Swagger2ControllerWebFlux by plugin org.apache.skywalking.apm.plugin.spring.mvc.v4.define.R
estControllerForLowVersionInstrumentation is not activated. Witness class org.springframework.cache.interceptor.DefaultKeyGenerator does not exist. 
WARN 2023-07-07 19:35:32.399 main AbstractClassEnhancePluginDefine : enhance class springfox.documentation.swagger.web.ApiResourceController by plugin org.apache.skywalking.apm.plugin.spring.mvc.v4.define.RestCo
ntrollerInstrumentation is not activated. Witness class org.springframework.cache.interceptor.DefaultKeyGenerator does not exist. 
WARN 2023-07-07 19:35:32.399 main AbstractClassEnhancePluginDefine : enhance class springfox.documentation.swagger.web.ApiResourceController by plugin org.apache.skywalking.apm.plugin.spring.mvc.v4.define.RestCo
ntrollerForLowVersionInstrumentation is not activated. Witness class org.springframework.cache.interceptor.DefaultKeyGenerator does not exist. 

2023-11-25T16:55:03.png

使用正则替换

(\r?\n)(^[a-z])
$2

2023-11-25T16:55:42.png

执行后效果

2023-11-25T16:56:01.png