twitter-text-objc
twitter-text-objc copied to clipboard
An Objective-C implementation of Twitter's text processing library
Need conformance branch merged before this branch gets merged
Add support for greek characters in hashtags
Example of URL: http://juju.su/news/22/конец-пиратству/ Parsing result: http://juju.su/news/22/ Possible fix: ``` #define TWUValidGeneralURLPathChars @"[a-zA-Z0-9!\\*';:=+,.$/%#\\[\\]\\-_~&|@" TWULatinAccents TWUCyrillicHashtagChars @"]" #define TWUValidURLPathEndingChars @"[a-zA-Z0-9=_#/+\\-" TWULatinAccents TWUCyrillicHashtagChars @"]|(?:" TWUValidURLBalancedParens @")" ```
example I have a URL: @"http://192.168.0.1" or @"192.168.0.1/path/query?key1=xxx&key2=yyy", when call to URLsInText: in TwitterText.m return empty array. In fact, I need return array for those URL. So,why not support ip...