PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 10 7 8 9 10 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which among the following is/are not a metacharacter?1. /a2. /A3. /b4. /B 1 and 3 Only 1 2, 3 and 4 2 and 4 1 and 3 Only 1 2, 3 and 4 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
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_split() preg_unchain() preg_divide() preg_destroy() preg_split() preg_unchain() preg_divide() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Parameter flags was added in which version of PHP? PHP 4.0 PHP 4.2 PHP 4.3 PHP 4.1 PHP 4.0 PHP 4.2 PHP 4.3 PHP 4.1 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Say we have two compare two strings which of the following function/functions can you use?1. strcmp()2. strcasecmp()3. strspn()4. strcspn() None of the mentioned 3 and 4 All of the mentioned 1 and 2 None of the mentioned 3 and 4 All of the mentioned 1 and 2 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."; 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 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 ANSWER DOWNLOAD EXAMIANS APP