sportorg / pysport

Sportorg is a comprehensive software solution developed in Python that streamlines the organization and execution of orienteering competitions.
https://sportorg.readthedocs.io/ru/latest/
GNU General Public License v3.0
32 stars 16 forks source link

feat: add does-not-contain action to the filter #433

Closed alex-karpov closed 4 months ago

alex-karpov commented 4 months ago

В фильтр добавлен пункт «не содержит» (по мотивам обсуждения #427). Добавлены тесты.

Регулярное выражение для «не содержит» взято отсюда: https://stackoverflow.com/questions/717644/regular-expression-that-doesnt-contain-certain-string

Вопрос по фильтру. Не лучше вместо регулярных выражений ли использовать ==, in, not in?