2
2

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 5 years have passed since last update.

grepで範囲指定して時間を検索する方法

Last updated at Posted at 2018-05-28

以下のテキストファイルの中から、14:00~14:20の時間帯の行をgrepするにはどうすればいいだろうか。

image.png

正規表現で時間の部分を指定して検索すれば、うまく行く。

<操作手順>

  1. サクラエディタを開く。
  2. ctrl+Gで、「Grep条件入力」画面を開く。
  3. 「条件」に、以下の正規表現を入力する。
    ※\tはTabを意味する。
    ※「正規表現」にも忘れずチェックをつける

image.png

4.「検索」を押す。

検索結果として、14:00~14:20の行のみが表示される。

image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?