标签: php string preg-match
我试图找到整个单词,例如'location:','Contact:',在带有preg_match的字符串的开头。
请有人提供并快速举例。
答案 0 :(得分:9)
以单词字符(^)开头(\w)并且有一个或多个(+)并且应该被捕获并存储在$ matches(括号)中
^
\w
+
$in = "First word is captured"; preg_match("/^(\w+)/",$in,$matches); echo $matches[1];