Actions
Feature #1754
closed/openurl открытие ссылок по регекспу
Start date:
10/09/2014
Due date:
% Done:
100%
Estimated time:
5:00 h
Description
Ввести в аргументы команды ключ
regex <reg exp>
выбирающий все ссылки соответствующие регулярному выражению
Updated by Mellon about 10 years ago
желательно, чтоб регексп поддерживал отрицательные условия
Updated by 0xd34df00d about 10 years ago
Это как? Там обычный QRegExp будет, есличо. Его возможности норм? А то можно и std::regex из C++11 использовать, или буст какой.
Updated by Mellon about 10 years ago
В принципе, qregexp поддерживает
^ The caret negates the character set if it occurs as the first character (i.e. immediately after the opening square bracket). [abc] matches 'a' or 'b' or 'c', but [^abc] matches anything but 'a' or 'b' or 'c'.
(?!E) Negative lookahead. This assertion is true if the expression does not match at this point in the regexp. For example, const(?!\s+char) matches 'const' except when it is followed by 'char'.
Если они норм будут работать, то ок. эти штуки нужны для всяких поинтов, чтобы отсеивать ссылки на сами посты.
Updated by 0xd34df00d about 10 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
- Estimated time changed from 3:00 h to 5:00 h
Похоже, что работает.
Updated by Mellon about 10 years ago
- Related to Feature #1770: Сведение аргументов /openurl вместе. added
Actions