PHP Regular Expressions Which one of the following functions is used to search a string? preg_search preg_found preg_find preg_match preg_search preg_found preg_find preg_match ANSWER DOWNLOAD EXAMIANS APP
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@examians.com contact contact@ examians.com contact@examians.com contact ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following preg PHP function is used to do a find and replace on a string or an array? preg_find_replace() preg_find() preg_replace() preg_findre() preg_find_replace() preg_find() preg_replace() preg_findre() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 9 8 7 10 9 8 7 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-Za-z0-9] [A-za-z] [a-z] [A-z] [A-Za-z0-9] [A-za-z] [a-z] [A-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username is all lowercase! Username must be all lowercase! Error No Output is returned Username is all lowercase! Username must be all lowercase! Error No Output is returned ANSWER DOWNLOAD EXAMIANS APP