使用preg_match查找列表中的所有单词

时间:2011-06-14 23:03:27

标签: php preg-match

在SO的帮助下,我能够提取关键字'超出电子邮件主题行以用作类别。现在我决定允许每个图片使用多个类别,但似乎无法正确地说出我的问题以获得Google的良好回应。 preg_match停在列表中的第一个单词。我确定这与“渴望”有关。或者只是用其他东西替换管道符号|,但我无法看到它     \b(?:amsterdam|paris|zurich|munich|frankfurt|bulle)\b

我目前使用的整个字符串是:

preg_match("/\b(?:amsterdam|paris|zurich|munich|frankfurt|bulle)\b/i", "." . $subject . ".", $matches);

所有我需要做的就是把所有这些话都拿出去,而不是停在阿姆斯特丹,或者在它所搜索的主题中首先出现的任何词。在那之后,它只是处理$ matches数组的问题,对吧?

谢谢, 标记

1 个答案:

答案 0 :(得分:1)

好的,这里有一些preg_match_all()的示例代码,它显示了如何删除嵌套:

$pattern = '\b(?:amsterdam|paris|zurich|munich|frankfurt|bulle)\b';
$result = preg_match_all($pattern, $subject, $matches);

# Check for errors in the pattern
if (false === $result) {
    throw new Exception(sprintf('Regular Expression failed: %s.', $pattern));
}

# Get the result, for your pattern that's the first element of $matches
$foundCities = $result ? $matches[0] : array();

printf("Found %d city/cities: %s.\n", count($foundCitites), implode('; ', $foundCities));

由于$foundCities现在是一个简单的数组,您也可以直接迭代它:

foreach($foundCities as $index => $city) {
    echo $index, '. : ', $city, "\n";
}

不需要嵌套循环,因为$matches返回值已经规范化。这个概念是让代码返回/创建数据,以便进一步处理。