从html字符串中提取价格并转换为xml

时间:2012-11-05 12:10:06

标签: php html xml

这是我需要提取价格的数据字符串样本。

“价格Rs 475 000 - CHEVROLET AVEO LS // SEP 11 6,000公里 - 红色..完整选项..手动5门//掀背车联系我786 8394”

在抓取特定网站后我有很多这样的字符串,字符串中可以有任意数字或单词。

我试图用空格分隔每个单词并将其存储在数组$ arr中。我已经声明了另一个用于存储价格$ arrPrice标识符的数组。 如果找到单词价格或rs,则数据(例如475 000)存储在变量$ price中。然而,由于我用太空爆炸了它,所以没有考虑000。我在xml标签中只得到475。

有效的方法可能是正则表达式,但我不擅长。如果有人能帮助我,我会感激不尽。

到目前为止找到我的代码,

谢谢!

    <?php


    foreach($html->find('div.field-content') as $e) {//find the h3 element that contains class field content


    $arrPrice = array("rs", "price","rs."); // an array of identifiers to retrieve price

    $str = $e->innertext;// crawled data from a website
    $str = strtolower($str); //converting string to lower case
    $arr = explode(" ", $str);//creating an array of the string by seperating it from the spaces

    if (strlen($str) > 0) {
        $price='';

        for ($i = 0; $i < sizeof($arr); $i++) {

            //finding price 
            for ($j = 0; $j < sizeof($arrPrice); $j++) {
                if ($arr[$i]==$arrPrice[$j]) {
                    $price = $arr[$i+1];
                    //echo 'Price='.$arr[$i+1];

                }
            }   

        }
        $xml.="<Cars>";
        $xml.="<Price>".$price."</Price>";
        $xml.="</Cars>";
    } 

    else {
        echo "String is blank";
    }


}

$file = fopen('data.xml','w');
if(!$file) {
    die('Error cannot create XML file');
}
fwrite($file,$xml);
fclose($file);

&GT;

1 个答案:

答案 0 :(得分:0)

if ( $arr[$i] == $arrPrice[$j] ) {
  $price = $arr[$i+1];
  if ( isset( $arr[$i+2] ) && is_numeric( $arr[$i+2] ) ) {
    $price .= $arr[$i+2];
  }
}

等等..