1
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?

More than 3 years have passed since last update.

Notepad++で良く忘れるからメモ

Last updated at Posted at 2020-07-24

テキストのファイルを作ってると
タイムコードやらIDやらを付けるけど、
別の用途でタイムコードやIDが要らない場合の削除方法。

置換を使って置換文字列を空で置き換えるだけ

例えば

01,ダミーテキスト

的な感じで数百行のテキストがあって
先頭のID番号はいらない場合
置換の検索文字列に
(\d+,)
をいれれば良し。

ちなみにタイムコード場合は
00:00:00 テキスト

(\d\d+:+\d\d+:\d\d)で選択できる。

###空白行を削除したい時
検索文字列に^\s*で検索

#vrewでのタイムコード付き
vrewでタイムコード付きで出すとミリ秒は切り捨てられる。
マクロ組んでpremiereにコピペしたいから
ミリ秒をとりあえずつける場合

検索文字は
(.+)
置換で
\1:00
これで末尾に:00が追加される

例えばvrewでは
00:00:50 テキスト
00:00:51 ダミーテキスト

みないな感じで書き出される。
タイムコードとテキストの間にはTABが使われてる。

まずはテキストファイルはいらないのでタブから行末まで削除する

検索文字列は
\t.+
置換文字列は空白で
これですべて置換してタブからテキストを削除する
でその後にタイムコードのミリ秒を付ける
検索文字は
(.+)
置換で
\1:00

#空白を検索したい場合は

^\s*

1
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
1
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?