使用php从大内容中提取文本

时间:2013-02-06 12:06:43

标签: php

我有一个文本,我需要找到一个双引号的文本。敌人的例子

this is the "dummy text for the" content 

我需要将值设为dummy text for the

有没有人知道如何使用php获取此功能?

或任何PHP函数?

谢谢

1 个答案:

答案 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];
?>