PHP Regular Expressions What will be the output of the following PHP code?$url = "contact@examians.com";echo ltrim(strstr($url, "@"),"@"); contact@ examians.com contact contact@examians.com contact@ examians.com contact contact@examians.com ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_search preg_match preg_found preg_find preg_search preg_match preg_found preg_find ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match preg_split preg_match_all preg_matchall preg_match preg_split preg_match_all preg_matchall ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.2 PHP 4.1 PHP 4.3 PHP 4.0 PHP 4.2 PHP 4.1 PHP 4.3 PHP 4.0 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 7 8 10 9 7 8 10 9 ANSWER DOWNLOAD EXAMIANS APP