PHP Regular Expressions Which one of the following preg PHP functions is used to take a string, and put it in an array? preg_destroy() preg_divide() preg_split() preg_unchain() preg_destroy() preg_divide() preg_split() preg_unchain() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$author = "nachiketh@example.com";$author = str_replace("a","@",$author);echo "Contact the author of this article at $author."; Error Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Contact the author of this article at n@chiketh@ex@mple.com Error Cont@ct the @uthor of this @rticle @t n@chiketh@ex@mple.com Contact the author of this article at nachiketh@ex@mple.com Contact the author of this article at n@chiketh@ex@mple.com ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5 PHP 5.2 PHP 5.3 PHP 4 PHP 5 PHP 5.2 PHP 5.3 PHP 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_search preg_find preg_match preg_found preg_search preg_find preg_match preg_found ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following regular expression matches any string containing zero or one p? p+ p* p# P? p+ p* p# P? ANSWER DOWNLOAD EXAMIANS APP