我正试图从字符串中抓取日期。
<div class="entry_details">
<i>
<br>
Team: EntryPod Podium
<br>
Created at:
<script type="text/javascript">
<!--//
var d = new Date(1346364356000);
document.write(d.toString());
//--!>
</script>
Thu Aug 30 2012 15:05:56 GMT-0700 (PDT)
</i>
</div>
我想只抓住2012年8月30日星期四15:05:56 GMT-0700(PDT)并将其存储在变量中
我的代码是
$test = $this->getText("//div[contains(@class, 'entry_details')]");
但它抓住了创建于:8月30日星期四等的EntryPod Podium .....
答案 0 :(得分:1)
尝试
//div[contains(@class, 'entry_details')]//text()[contains(., 'GMT')]