php教程 ereg()把htm轉換成xml文件實現方法
語法: int ereg(string pattern, string string, array [regs]);
返回值: 整數/數組
$text = "
This is some text here "
".";
ereg("(([^<"]|[^<]*<[^/][^<])*("[^"]*"([^<"]|[^<]*<[^/][^<])*)*)?
", $text, $matches);
echo "Found text: " . $matches[1] . "n";
?>
內容說明
本函數以 pattern 的規則來解析比對字符串 string。比對結果返回的值放在數組參數 regs 之中,regs[0] 內容就是原字符串 string、regs[1] 為第一個合乎規則的字符串、regs[2] 就是第二個合乎規則的字符串,余類推。若省略參數 regs,則只是單純地比對,找到則返回值為 true。