PHP 使用正则表达式解析字符串

示例

preg_match可用于使用正则表达式解析字符串。用括号括起来的表达式部分称为子模式,使用它们您可以选择字符串的各个部分。

$str = "<a href=\"http://example.org\">My Link</a>";
$pattern = "/<a href=\"(.*)\">(.*)<\/a>/";
$result = preg_match($pattern, $str, $matches);
if($result === 1) {
    // 字符串与表达式匹配
    print_r($matches);
} else if($result === 0) {
    // 没有匹配
} else {
    // 发生了错误
}

输出结果

Array
(
    [0] => <a href="http://example.org">My Link</a>
    [1] => http://example.org
    [2] => My Link
)