0

[caption id="attachment_1342" align="alignleft" width="300" caption="Cheers... "Forward" diversifying innovation to secure first place. "][/caption] A group of 35 students from...

このデータを api から読み取っています。で始まるテキストが欲しい A group of 35 students from...。キャプション タグを null に置き換えるのを手伝ってください。これは私が試したものです:

echo "<table>";
echo "<td>".$obj[0]['title']."</td>";
echo "<td>".$obj[0]['content']."</td>";
echo "</table>";
$html = $obj[0]['content'];
preg_match_all('/<caption>(.*?)<\/caption>/s', $html, $matches);
preg_replace('',$matches, $obj[0]['content']);

どんな助けでも。

4

4 に答える 4

1
$pattern = "/\[caption (.*?)\](.*?)\[\/caption\]/i";
$removed = preg_replace($pattern, "", $html);
于 2013-09-26T07:18:00.313 に答える
0

質問に記載されているスニペットでは、正規表現検索パターンが正しくありません。入力に ​​no はありません<caption>。その<caption id...

2 番目にpreg_replaceを使用しても、ここでは何の目的もありません。preg_replace には 3 つの引数が必要です。最初は検索用の正規表現パターンである必要があります。2 番目は置換する文字列です。3 番目は入力文字列です。

preg_matchを使用した次のスニペットが機能します。

<?php

//The input string from API
$inputString = '<caption id="attachment_1342" align="alignleft" width="300" caption="Cheers... "Forward" diversifying innovation to secure first place. "></caption> A group of 35 students from';

//Search Regex
$pattern = '/<caption(.*?)<\/caption>(.*?)$/';

//preg_match searches inputString for a match to the regular expression given in pattern
//The matches are placed in the third argument.
preg_match($pattern, $inputString, $matches);

//First match is the whole string. second if the part before caption. third is part after caption.
echo $matches[2];
// var_dump($matches);

?>

何らかの理由でpreg_match_allを使用したい場合。次のスニペットは、問題で言及されているものを変更したものです -

<?php

//Sample Object for test
$obj = array(
    array(
        'title' => 'test',
        'content' => '<caption id="attachment_1342" align="alignleft" width="300" caption="Cheers... "Forward" diversifying innovation to secure first place. "></caption> A group of 35 students from'
    )
);

echo "<table border='1'>";
echo "<td>".$obj[0]['title']."</td>";
echo "<td>".$obj[0]['content']."</td>";
echo "</table>";

$html = $obj[0]['content'];

//preg_match_all will put the caption tag in first match
preg_match_all('/<caption(.*?)<\/caption>/s', $html, $matches2);

//var_dump($matches2);

//use replace to remove the chunk from content
$obj[0]['content'] = str_replace($matches2[0], '', $obj[0]['content']);

//var_dump($obj);

?>
于 2013-09-26T07:50:52.050 に答える
0

君たちありがとう。これを行うには、explode 関数を使用します。

$html = $obj[0]['content'];
    $code = (explode("[/caption]", $html));
    if($code[1]==''){
    echo $code[1];  
    }   
于 2013-09-27T00:41:12.453 に答える