用preg_match在字符串的开头找到整个单词?

问题描述 投票:0回答:1

我试图找到整个单词,例如'location:','Contact:',在带有preg_match的字符串的开头。

请有人提供并快速举例。

php string preg-match
1个回答
9
投票

以字符(^)开头(\w)并且有一个或多个(+)并且应该被捕获并存储在$ matches(括号)中

$in = "First word is captured";
preg_match("/^(\w+)/",$in,$matches);
echo $matches[1];
© www.soinside.com 2019 - 2024. All rights reserved.