You've stumbled across the archive of the blog posts I wrote back in 2014 and prior. Feel free to peruse, through everything from code snippets that never made it to GitHub, to random ramblings about my passion for technology.

This code can compare a string to a wildcard, such as "a*c" which would match "abc" or "abbbbbc" or "afiefaififeanfnc" but not "aaa". It can also match "a?c" to "abc" or "a7c" but not "azzc".

Continue reading...

I'm fairly certain that most programmers out there are familiar with Regular Expressions (herein known as regex), and for the most part, regex seems to be pretty consistent in different computer languages.

Continue reading...