Simple string pattern matching
- by Joonas Trussmann
What's the easiest way of doing simple pattern matching a la .something.com something.com/ something.com/somefolder/*.jpg in the iPhone SDK? At this point it looks like I'm going to have to use a regular expression library of some sort, which is really overkill when all I need is simple wildcard matching.
None of the standard NSString methods seem to be available on the iPhone.