blob: 56c2cfc1db5cccef180f5b8e7da71875f9eb2ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
///@file
namespace nix {
static constexpr std::string_view nameRegexStr =
// This uses a negative lookahead: (?!\.\.?(-|$))
// - deny ".", "..", or those strings followed by '-'
// - when it's not those, start again at the start of the input and apply the next regex, which is [0-9a-zA-Z\+\-\._\?=]+
R"((?!\.\.?(-|$))[0-9a-zA-Z\+\-\._\?=]+)";
}
|