Skip to content

Instantly share code, notes, and snippets.

@ywindish
Last active June 16, 2016 02:17
Show Gist options
  • Save ywindish/802466dfa8c81bcd8128 to your computer and use it in GitHub Desktop.
Save ywindish/802466dfa8c81bcd8128 to your computer and use it in GitHub Desktop.
正規表現にuse constantした定数を埋め込む ref: http://qiita.com/ywindish/items/6fc5bb951ad587820728
use constant TEST_HOGE => "hogehoge";
if ('hogehoge fugafuga'=~ /${\(TEST_HOGE)}/) {
print "matched!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment