Using regexkitlite with strings containing % signs
- by David Liu
So I'm using RegexKitLite in my iPhone app, and I'm basically grabbing out a bunch of URLs and names from within a web page. The problem is that whenever it comes across a URL with URL encoded characters like %22 for a double quote or %27 for a single quote, the captured string basically gives me a jumbled overflowed string, containing garbage and even method names.
I'm really not doing anything particularly special within the regex, just your basic "startdelimiter(.*)enddelimiter" regex.