Skip to content

Instantly share code, notes, and snippets.

@mgng
Created July 11, 2012 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgng/3087207 to your computer and use it in GitHub Desktop.
Save mgng/3087207 to your computer and use it in GitHub Desktop.
空文字またはうんこに一致する正規表現
<?php
if ( $str === "" || $str === "うんこ" ) {
// match
}
<?php
if ( preg_match( "/\A(.{0}|うんこ)\z/u", $str ) === 1 ) {
// match
}
<?php
if ( preg_match( "/\A(|うんこ)\z/u", $str ) === 1 ) {
// match
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment