LoginSignup
17
13

More than 5 years have passed since last update.

正規表現の位置指定子メモ

Posted at

位置指定子をいつも忘れるのでメモ

以下のパターンはすべてexample.comの「example」にマッチする。

肯定先読み

(?=)
  • 後に続くパターン位置にマッチ
//文章
http://example.com/ https://example.jp

//パターン
example(?=\.com)

否定先読み

(?!)
  • 後に続かないパターン位置にマッチ
//文章
http://example.com/ https://example.jp

//パターン
example(?!\.jp)

肯定戻り読み

(?<=)
  • 前から続くパターン位置にマッチ
//文章
http://example.com/ https://example.jp

//パターン
(?<=http://)example

否定戻り読み

(?<!)
  • 前から続かないパターン位置にマッチ
//文章
http://example.com/ https://example.jp

//パターン
(?<!https://)example
17
13
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
17
13