|  |  
 |   |   
 NAMEregex_match – Matche a string from against a compiled regular expression SYNOPSIS
 DESCRIPTIONregex_match() matches a regular expression against a string and returns true(1) if the regular expression matches the string or false(0) otherwise. re The regular expression that was compiled using regex_compile string The string to match the regular expression against RETURN VALUEregex_match() returns true(1) if the string passed as parameter is matched by the regular expression false(0) if not. EXAMPLESProgram that matches an email address passed as first parameter 
 
 
 |