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?

More than 3 years have passed since last update.

PHP 正規表現を使って文字列を比較する

Posted at

目的

  • 正規表現を用いた文字列比較ができる関数preg_match()の使用方法をメモ的にまとめる

方法

  • 下記のように記載することで正規表現を用いて文字列を比較する事ができる。

    preg_match('/パターン文字列(正規表現を含む検索したい文字列)/', '比較対象文字列')
    
  • パターン文字列が比較対象にマッチした時はintの1を返す。

  • パターン文字列が比較対象にマッチしなかった時はintの0を返す。

  • エラーが発生した時はfalseを返す。

  • 必ずfalseを返す訳ではなく「falseとして評価される値を返す」場合もある。

  • 当該関数の戻り値を評価する時は===演算子を使用しないと行けないらしい。

参考文献

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?