3

我有一个带有州名称和代码的字符串,如下所示

KT16(Ottershaw)

现在我需要从中提取文本()。我需要提取 Ottershaw。我怎么能用php做到这一点。

4

4 回答 4

7

应该 :

preg_match('/\(([^\)]*)\)/', 'KT16(Ottershaw)', $matches);
echo $matches[1];
于 2013-02-07T10:16:49.840 回答
5

只需获取第一个左括号和最后一个右括号之间的子字符串:

$string = "KT16(Ottershaw)";
$strResult = substr($string, stripos($string, "(") +1,strrpos($string, ")") - stripos($string, "(")-1);  
于 2013-02-07T10:17:24.813 回答
1

这是一个示例代码,用于提取 '[' 和 ']' 之间的所有文本并将其存储为 2 个单独的数组(即一个数组中括号内的文本和另一个数组中括号外的文本)

function extract_text($string)
   {
    $text_outside=array();
    $text_inside=array();
    $t="";
    for($i=0;$i<strlen($string);$i++)
    {
        if($string[$i]=='[')
        {
            $text_outside[]=$t;
            $t="";
            $t1="";
            $i++;
            while($string[$i]!=']')
            {
                $t1.=$string[$i];
                $i++;
            }
            $text_inside[] = $t1;

        }
        else {
            if($string[$i]!=']')
            $t.=$string[$i];
            else {
                continue;
            }

        }
    }
    if($t!="")
    $text_outside[]=$t;

    var_dump($text_outside);
    echo "\n\n";
    var_dump($text_inside);
  }

输出:extract_text("你好,你好吗?"); 将产生:

array(1) {
  [0]=>
  string(18) "hello how are you?"
}

array(0) {
}

extract_text("你好 [http://www.google.com/test.mp3] 你好吗?"); 会产生

array(2) {
  [0]=>
  string(6) "hello "
  [1]=>
  string(13) " how are you?"
}


array(1) {
  [0]=>
  string(30) "http://www.google.com/test.mp3"
}
于 2014-01-29T09:23:31.773 回答
0

以下正则表达式应该可以工作:

/\[(.*?)\]/ 
于 2013-02-07T10:16:30.143 回答