PHP Regular Expressions [:alpha:] can also be specified as. [A-Za-z0-9] [a-z] [A-za-z] [A-z] [A-Za-z0-9] [a-z] [A-za-z] [A-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match preg_match_all preg_matchall preg_split preg_match preg_match_all preg_matchall preg_split 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)); this is some text that we might like to parse. Array ( [0] => this is [1] => some text that [2] => we might like to parse. ) Array ( [0] => some text that [1] => 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] => this is [1] => some text that [2] => we might like to parse. ) Array ( [0] => some text that [1] => 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 Which one of the following functions can be used to concatenate array elements to form a single delimited string? implode() concatenate() concat() explode() implode() concatenate() concat() explode() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_match preg_find preg_found preg_search preg_match preg_find preg_found preg_search ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 8 7 10 9 8 7 10 9 ANSWER DOWNLOAD EXAMIANS APP