我有一个文本,我需要找到一个双引号的文本。敌人的例子
this is the "dummy text for the" content
我需要将值设为dummy text for the
有没有人知道如何使用php获取此功能?
或任何PHP函数?
谢谢
答案 0 :(得分:1)
<?php
$subject = 'this is the "dummy text for the" content';
$pattern = '/"(.*?)"/';
preg_match_all($pattern, $subject, $matches, PREG_SET_ORDER);
echo $matches[0][1];
?>