Profile
Achievement
jatubio's Recent SnippetsTagged regex
- All /
« Prev 1 Next »
Search and returns the first results on a regex search
If we use parenthesized or subpattern, can return with $result_number
0
926
posted 9 years ago by jatubio
Build a regex expression to all array elements are present in any order.
Gets an array of strings (Sample: array("Access Denied","error","could not be retrieved")
Return sample: '(?=.*Access Denied)(?=.*error)(?=.*could not be retrieved)
0
946
posted 9 years ago by jatubio
Replaces spaces by '\s+' which means one or more spaces
$string can be one string or one array of strings
0
899
posted 9 years ago by jatubio