0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

パワポをコピーしてテキスト保存したら疑問形になった話(ゼロ幅スペースの削除方法)

Posted at

起きた事象

  1. パワポに書いてある行すべてコピー
    image.png

  2. VS Codeにペースト&保存(SJIS)
    image.png

  3. VS Codeで同じファイルを開き直す(SJIS)
    image.png

パワポで書いていた文章が疑問形になってしまった。

原因

同じようにパワポをコピーして
image.png

sakuraに貼り付けてみると
image.png

\u200bが改行の前に入り込んでいる模様
ググってみるとゼロ幅スペースというものらしい

ちなみにsakuraの場合、ゼロ幅スペースが含まれた状態でSJISで保存しようとすると消える旨のダイアログが表示される。
image.png

対策

vscode-bs-ctrlchar-removerなるものをインストールして

settings.jsonに以下を記載

settings.json
    "editor.formatOnSave": true,
    "ctrlchar-remover.pattern": "[\\u200B]",

これでVS Codeで保存時に\u200bが削除されるようになった。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?