Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
{n,m} quantifier в regexp?
Hello.
Хочется применить это из perlre:
Quantifiers
[..]
{n,m} Match at least n but not more than m times
Делаю
location ~ ^/product(/.+\.[\w\d]\{1,5\})$ {
return 302 $1;
}
не попадает. Попадает так:
location ~ ^/product(/.+\.[\w\d]+)$ {
return 302 $1;
}
но нам туда не надо. (c)
Вопрос: Как правильно экранировать квантификаторы такого вида в конфиге nginx?
Если не экранировать совсем, то ошибается парсинг. ;)
--
Peter Vereshagin <peter@xxxxxxxxxxxxxx> (http://vereshagin.org) pgp: A0E26627
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|