PHP Regular Expressions [:alpha:] can also be specified as. [A-z] [a-z] [A-Za-z0-9] [A-za-z] [A-z] [a-z] [A-Za-z0-9] [A-za-z] 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_split() preg_unchain() preg_destroy() preg_divide() preg_split() preg_unchain() preg_destroy() preg_divide() ANSWER DOWNLOAD EXAMIANS APP
PHP Regular Expressions Which one of the following functions will convert a string to all uppercase? uppercase() struppercase() strtoupper() str_uppercase() uppercase() struppercase() strtoupper() str_uppercase() 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? concat() explode() concatenate() implode() concat() explode() concatenate() implode() 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. [0] => this is [1] => some text that [2] => 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. ) this is some text that we might like to parse. [0] => this is [1] => some text that [2] => 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. ) 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!"; Error Username must be all lowercase! Username is all lowercase! No Output is returned Error Username must be all lowercase! Username is all lowercase! No Output is returned ANSWER DOWNLOAD EXAMIANS APP