我正在尝试使用正则表达式匹配以下模式:
Something-23432
我正在使用以下代码使用正则表达式找到它
preg_match('/^Something\-/[0-9/]+/', $msg, $matches);
它不工作:/。任何帮助,将不胜感激!
整个文档中只会出现一次上述 PATTERN。
编辑
<?php
preg_match('/^Something\-[0-9]+$/', "I am looking for Something-2343. I am not sure if this script can find it.", $matches);
print_r($matches);
?>
这段代码只是生成
Array ( )