0
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 1 year has passed since last update.

正規表現で特定文字列を含まない、否定の検索・記述

Posted at

正規表現で特定文字列を含まない検索をしたい!

よく大量のcsvだったり、tsvデータの中から、特定の文字列を含む行だけを取り出したい!!
なんてことがありませんか?

そんなときにサクラエディタと正規表現で不要物を取り除く。
ということをやる人はやるかと思うので、その方法を備忘録として記載しております。

利用する記述としては以下

~を含まない

^(?!.*abc).*$

〜または〜を含まない

^(?!.*(abc|efg)).*$

〜で始まらない

^(?!abc).*$

〜で終わらない

^(?!.*abc$).*$

〜を含むが、〜を含まない

^(?=.*abc)(?!.*def).*$

参考リンク

0
2
1

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