PHP Regular Expressions Which one of the following functions is used to search a string? preg_search preg_match preg_found preg_find preg_search preg_match preg_found preg_find 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() explode() concat() implode() concatenate() explode() concat() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions PHP has long supported two regular expression implementations known as _______ and _______.1. Perl2. PEAR3. Pearl4. POSIX 1 and 2 2 and 4 2 and 3 1 and 4 1 and 2 2 and 4 2 and 3 1 and 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions What will be the output of the following PHP code?$username = "jasoN";if (ereg("([^a-z])",$username))echo "Username must be all lowercase!";elseecho "Username is all lowercase!"; Username is all lowercase! No Output is returned Error Username must be all lowercase! Username is all lowercase! No Output is returned Error Username must be all lowercase! ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions. 10 8 9 7 10 8 9 7 ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions POSIX implementation was deprecated in which version of PHP? PHP 5.3 PHP 5.2 PHP 4 PHP 5 PHP 5.3 PHP 5.2 PHP 4 PHP 5 ANSWER DOWNLOAD EXAMIANS APP