使用正则匹配删除文本空行 - 正则 - 空白行 - vscode

Posted Rudon滨海渔村

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用正则匹配删除文本空行 - 正则 - 空白行 - vscode相关的知识,希望对你有一定的参考价值。

效果

方法

  1. 打开编辑器vscode
  2. "编辑" > "替换"
  3. 空行的正则表达式是:(包括空格、大空格、行尾的换行符--方便合并多个空行为0个空行)
    ^(\\s*)$\\n

    \\s代表任意的空字符,\\n代表屁股的换行符,如果无法匹配,请用"\\n\\r"

  4. 替换为空字符

Visual Studio Code - Code Editing. RedefinedVisual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.https://code.visualstudio.com/

Getting Started

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for javascript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages (such as C++, C#, Java, Python, php, Go) and runtimes (such as .NET and Unity). Begin your journey with VS Code with these introductory videos.

以上是关于使用正则匹配删除文本空行 - 正则 - 空白行 - vscode的主要内容,如果未能解决你的问题,请参考以下文章

Notepad ++中的正则表达式删除空行

使用正则表达式删除任何空白行

Notepad++怎么删除空行

如何使用正则表达式删除尾随空格?

Shell编程Shell中的正则表达式

正则表达式匹配文本中包含换行符等空白字符如何匹配