13
7

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.

【Visual Studio Code】置換を使って特定条件で改行する方法(初心者向け)

Last updated at Posted at 2022-10-13

これはなに

Visual Studio Codeを使って、特定条件でテキストデータを改行する方法。

筆者は今までサクラエディタを使ってましたが、WindowsからMacに変えたら使えなくなったので、
Visual Studio Codeでテキストデータの一括置換をしてみました。
忘れそうなので、備忘録として残します。(サクラエディタも同じやろがい)

今回やりたいこと

アンケートで複数回答の項目がコンマ区切りで同一セルに内包されているため、
回答項目毎にセルを分けて一列に整理したい。
なので、テキストファイルの,を一括置換で改行できたらOK。

まずはVisual Studio Codeをダウンロードする

Mac OSでのダウンロード方法は以下の記事にまとまっていました。

早速、VSCodeを使って一括置換で改行する

Cntrol+Shift+Hで置換のタブを開きます。

スクリーンショット 2022-10-13 16.27.16.png

検索タブに「,」と入力し、置換タブに「\n」と入力します。
この際、検索タブの右横にある3つのアイコンのうち一番右端のアイコン.*をクリックして正規表現をONにします。

スクリーンショット 2022-10-13 16.28.53.png

一括で改行されました。便利〜
スクリーンショット 2022-10-13 16.29.39.png

おまけ

ちなみに、Macでサクラエディタを使う方法もあるみたいです。
使い慣れたサクラエディタを使いたい方はこちらの記事をご参照くださいませ〜

13
7
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
13
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?