提取单引号和双引号字符串

时间:2013-12-12 21:19:57

标签: php regex

除了PHP之外,这个问题与How to extract the string in the quotes (either double quotes or single quotes)基本相同。

基本上,我想要一个这样的函数:

function extract_tokens($text) {
    preg_match_all('/Foo\((?:\'(?<text>.*?)\'|"(?<text>.*?)")\)/', $text, $matches);
    return $matches['text'];
}

但是,PHP中不允许这样做:PHP Warning: preg_match_all(): Compilation failed: two named subpatterns have the same name

对于一个简单的目标,我目前的解决方案似乎过于复杂:

function extract_tokens($text) {
    preg_match_all('/Foo\((\'(.*?)\'|"(.*?)")\)/', $text, $matches);
    return array_map(function($token) {
        return substr($token, 1, strlen($token) - 2);
    }, $matches[1]);
}

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

function extract_tokens($text) {
    preg_match_all('/Foo\(([\'"])(?<text>.*?)\1\)/', $text, $matches);
    return $matches['text'];
}