6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

サクラエディタで空行をすべて削除したい場合の正規表現

Posted at

いつも作業のたびにやりかたをググっている気がするので、自分用にメモを残しておきます(´・ω・`)

TL; DR

サクラエディタを利用して、テキストファイルの空行をすべて削除したい場合、次の正規表現で置換すればよいです。

  • 置換前(N): ^\r\n
  • 置換後(P): 何も入力しない

①以下のようなテキストファイルがあり、空行をすべて削除したいとします。

image.png

②まず置換機能を起動します。起動方法はメニューの「検索(S)」から「置換(R)」を選択する、もしくは、ショートカット「Ctrl+R」です。

image.png

③置換機能が起動したら以下の通り入力し、「すべて置換(A)」を押下します。

image.png

④削除した空行の行数がポップアップとして表示されると同時に、空行がすべて削除されたことが確認できます。

image.png

6
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?