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
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 10 7 9 8 10 7 9 8 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() 3 and 4 1 and 2 None of the mentioned All of the mentioned 3 and 4 1 and 2 None of the mentioned All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$str = "Hello! My name is Cameron Fox. Coffee?";$find = array('/is/','/coffee/');$replace = array('/was/','/tea/');echo preg_replace ($find, $replace, $str); Hello! My name was Cameron Fox. Coffee? Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? Hello! My name was Cameron Fox. Coffee? Hello! My name is Cameron Fox. tea? Hello! My name is Cameron Fox. Coffee? Hello! My name was Cameron Fox. tea? 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
PHP Regular Expressions [:alpha:] can also be specified as. [a-z] [A-za-z] [A-z] [A-Za-z0-9] [a-z] [A-za-z] [A-z] [A-Za-z0-9] ANSWER DOWNLOAD EXAMIANS APP