私は、プログラミングの詳細を学ぶために、かなり単純なスクレイプWebサイトを作成し、情報をmysqlデータベースに非公開で保存する初心者プログラマーです。
これが私がスクレイプしようとしているコードです:
<li id="liIngredient" data-ingredientid="3914" data-grams="907.2">
<label>
<span class="checkbox-formatted"><input id="cbxIngredient" type="checkbox" name="ctl00$CenterColumnPlaceHolder$recipeTest$recipe$ingredients$rptIngredientsCol1$ctl01$cbxIngredient" /></span>
<p class="fl-ing" itemprop="ingredients">
<span id="lblIngAmount" class="ingredient-amount">2 pounds</span>
<span id="lblIngName" class="ingredient-name">ground beef chuck</span>
</p>
</label>
</li>
<li id="liIngredient" data-ingredientid="5838" data-grams="454">
<label>
<span class="checkbox-formatted"><input id="cbxIngredient" type="checkbox" name="ctl00$CenterColumnPlaceHolder$recipeTest$recipe$ingredients$rptIngredientsCol1$ctl02$cbxIngredient" /></span>
<p class="fl-ing" itemprop="ingredients">
<span id="lblIngAmount" class="ingredient-amount">1 pound</span>
<span id="lblIngName" class="ingredient-name">bulk Italian sausage</span>
</p>
</label>
</li>
データをスクレイピングした後、str_replaceを使用して、(最初の例を使用して)2ポンドの牛ひき肉(または2番目の例では1ポンドのバルクイタリアンソーセージ)以外のすべてを取り除こうとしています。
これが私の試みです:
$ingredients = str_replace('#<label>\s<span class="checkbox-formatted"><input id="cbxIngredient" type="checkbox" name=".*?" /></span>\s<p class="fl-ing" itemprop="ingredients">\s#', null, $ingredients);
echo $ingredients;
理論的には、span id=lblIngAmount
パーツのすべてを削除する必要があります。どこが間違っているのですか?str_replaceの前後でテキストは同じままです。どうして?
助けてくれてありがとう!さらに詳しい情報が必要な場合は、喜んでお知らせします。