📅  最后修改于: 2022-03-11 14:53:37.393000             🧑  作者: Mango
//Replace words that begin with t with an empty string
while(eregi(“[[:<]](t[[:alpha:]]+)[[>:]]”), $search, $match)
{Print($match[1].” “);
$search=ereg_replace($match[1], “”, $search);
}