by suleski | Nov 8, 2013 | Reference, Technical
Setting up regular expressions in code can sometimes be a pain. Maybe you want to test that your regex is correct before decorating it to meet your language’s needs. Well, there is a useful tool that I’ve used that does just that...
by suleski | Nov 8, 2013 | Technical, Walkthroughs
Regular expressions are generally not intuitive. Regular expressions in PHP are especially not intuitive. In short, there are some special rules to writing regular expressions using PHP. Here are some differences: Delimiters // Traditional – no delimiters...