PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 9 8 10 7 9 8 10 7 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() All of the mentioned 1 and 2 None of the mentioned 3 and 4 All of the mentioned 1 and 2 None of the mentioned 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$text = "this istsome text thatnwe might like to parse.";print_r(split("[nt]",$text)); [0] => this is [1] => some text that [2] => we might like to parse. this is some text that we might like to parse. Array ( [0] => some text that [1] => we might like to parse. ) Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) [0] => this is [1] => some text that [2] => we might like to parse. this is some text that we might like to parse. Array ( [0] => some text that [1] => we might like to parse. ) Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) 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? explode() implode() concatenate() concat() explode() implode() concatenate() concat() 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 preg PHP functions is used to take a string, and put it in an array? preg_divide() preg_split() preg_unchain() preg_destroy() preg_divide() preg_split() preg_unchain() preg_destroy() ANSWER DOWNLOAD EXAMIANS APP