Get text in quotes

前端 未结 3 1982
猫巷女王i
猫巷女王i 2020-12-11 10:53

is there is some function that can take just text inside the quotes from the variable?
Just like:

$text = \'I am \"pro\"\';
echo just_text_in_quotes($t         


        
相关标签:
3条回答
  • 2020-12-11 11:04

    This function will return the first matched text between quotes (possibly an empty string).

    function just_text_in_quotes($str) {
       preg_match('/"(.*?)"/', $str, $matches);
       return isset($matches[1]) ? $matches[1] : FALSE;
    }
    

    You could modify it to return an array of all matches, but in your example you use it within the context of echoing its returned value. Had it returned an array, all you would get is Array.

    You may be better off writing a more generic function that can handle multiple occurrences and a custom delimiter.

    function get_delimited($str, $delimiter='"') {
        $escapedDelimiter = preg_quote($delimiter, '/');
        if (preg_match_all('/' . $escapedDelimiter . '(.*?)' . $escapedDelimiter . '/s', $str, $matches)) {
            return $matches[1];
        }
    }
    

    This will return null if no matches were found.

    0 讨论(0)
  • 2020-12-11 11:04

    This regex:

    "(\w*)"
    

    will help you as you can see here: http://rubular.com/r/3kgH7NdtLm

    0 讨论(0)
  • 2020-12-11 11:20

    preg_match is made for this

       preg_match('/"(.*?)"/', $str, $quoted_string);
       echo "<pre>"; print_r($quoted_string);
       //return array of all quoted words in $str
    
    0 讨论(0)
提交回复
热议问题