如何在特殊字符之间提取字符串?

时间:2018-05-31 07:41:15

标签: php

我想提取内部的任何文字()。 期望的输出应该是“名称”,“土耳其”。 我试过这个

    $input = "This is (Name). I live in (Turkey). and so on with other brackets as well".
    $unit = extract_unit($input, '(', ')');
    echo $unit;

    function extract_unit($string, $start, $end) {
        $pos = stripos($string, $start);
        $str = substr($string, $pos);
        $str_two = substr($str, strlen($start));
        $second_pos = stripos($str_two, $end);
        $str_three = substr($str_two, 0, $second_pos);
        $unit = trim($str_three); // remove whitespaces
        return $unit;
    }

但是,如果文本的长度增加,只得到第一个输出“名称”但需要“土耳其”等等值括号中的任何内容。

1 个答案:

答案 0 :(得分:0)

尝试使用:

npm install -g @angular/cli