Answers for "ereg function in php"

PHP
0

ereg function in php

//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);
}
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language