PHP Regular Expressions [:alpha:] can also be specified as. [A-za-z] [A-Za-z0-9] [A-z] [a-z] [A-za-z] [A-Za-z0-9] [A-z] [a-z] ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$line = "You like dogs. I hate dogs. We should marry."$sen = preg_split('/./', $line);print_r($sen); Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. I hate dogs. We should marry.) Array([0]=>You like dogs. [1]=>I hate dogs. [2]=>We should marry.) Error You like dogs. I hate dogs. We should marry. Array([0]=>You like dogs. I hate dogs. We should marry.) ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 7 9 8 10 7 9 8 10 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following is not a preg PHP function? preg_match_all preg_split preg_match preg_matchall preg_match_all preg_split preg_match preg_matchall ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching strings using POSIX style regular expression? 7 8 10 9 7 8 10 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions is used to search a string? preg_find preg_match preg_search preg_found preg_find preg_match preg_search preg_found ANSWER DOWNLOAD EXAMIANS APP