我有一个类似于[something ="1,2,3"]
的字符串
我需要将引号之间的所有内容都放到字符串中。我确定preg_match是这样做的方法,但我不确定要使用的表达式。
$content = [something = "1,2,3"];
$new_string = preg_match('?regex?','$content');
答案 0 :(得分:1)
试试这个:
$content = '[something = "1,2,3"]';
if (preg_match('/"([^"]+)"/', $content, $matches)) {
$matchedContent = $matches[1];
}