PHP Regular Expressions Which one of the following functions is used to search a string? preg_find preg_search preg_found preg_match preg_find preg_search preg_found preg_match 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)); Array ( [0] => some text that [1] => we might like to parse. ) this is some text that 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. Array ( [0] => some text that [1] => we might like to parse. ) this is some text that 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. ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions [:alpha:] can also be specified as. [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] 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 1 and 2 All of the mentioned 3 and 4 None of the mentioned 1 and 2 All of the mentioned 3 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_divide() preg_unchain() preg_split() preg_destroy() preg_divide() preg_unchain() preg_split() preg_destroy() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match preg_matchall preg_split preg_match_all preg_match preg_matchall preg_split preg_match_all ANSWER DOWNLOAD EXAMIANS APP