Тег ‘RegExp’:

RegexKitLite – Lightweight Objective-C Regular Expressions for Mac OS X and iPhone

Very simple installation and in usage.
Installation in iPhone project:
1. Add files RegexKitLite.h and RegexKitLite.m to project.
2. Open Target of project and add -licucore in Other Linker Flags

3. Compile
Example:
Remove tags from web-page.
NSString *text =  [content stringByReplacingOccurrencesOfRegex:@"<.*>" withString:@""];

Site resource

Теги: , , ,

Комментарии отсутствуют

Проверка регулярных выражений

Проверка регулярных выражений на онлайн сервисах.
Очень удобный онлайн сервис по адресу http://www.regexpal.com/ не требует перезагрузки страницы для проверки регулярного выражения, написан полностью на javascript. Планрую на своем сайте создать подобный онлайн сервис.
Еще один неплохой сервис проверки, но минус его в том, что необходимо перегружать страницу, а плюс в том, что он выводит результаты, что очень [...]

Теги: ,

Комментарии отсутствуют

PHP: Parsing HTML to find Links

Парсинг HTML, поиск линков
Using the default for preg_match_all the array returned contains an array of the first ‘capture’ then an array of the second capture and so forth. By capture we mean patterns contained in ():
# Original PHP code by Chirp Internet: www.chirp.com.au # Please acknowledge use of this code by including [...]

Теги: ,

Комментарии отсутствуют