PHP Regular Expressions Which one of the following functions is used to search a string? preg_found preg_match preg_find preg_search preg_found preg_match preg_find preg_search 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, "@"),"@"); examians.com contact@examians.com contact contact@ examians.com contact@examians.com contact contact@ ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which among the following is/are not a metacharacter?1. /a2. /A3. /b4. /B 2 and 4 2, 3 and 4 Only 1 1 and 3 2 and 4 2, 3 and 4 Only 1 1 and 3 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_matchall preg_split preg_match preg_match_all preg_matchall preg_split preg_match preg_match_all ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions can be used to concatenate array elements to form a single delimited string? concat() concatenate() explode() implode() concat() concatenate() explode() implode() 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