Profile
Achievement
jatubio's Recent Snippets
- 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
921
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
939
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
895
posted 9 years ago by jatubio
Check if a string it's json encoded using regular expressions
Thanks to Jens Anders Bakke for his mootools code published in webfreak.no
http://webfreak.no/wp/2007/09/07/jsontest-for-mootools/
0
1023
posted 13 years ago by jatubio