add spaces to the regex

This commit is contained in:
Rudy Huyn 2019-03-20 17:04:37 -07:00
commit 817d72a5b5

View file

@ -44,8 +44,8 @@ static const array<wregex, 1> standardModePatterns =
}; };
static const array<wregex, 2> scientificModePatterns = static const array<wregex, 2> scientificModePatterns =
{ {
wregex(L"[-+]?" + c_wspcLParens + c_signedDecFloat + c_wspcRParens), wregex(c_wspc + L"[-+]?" + c_wspcLParens + c_signedDecFloat + c_wspcRParens),
wregex(L"[-+]?" + c_wspcLParens + c_signedDecFloat + L"[e]([+]|[-])+\\d+" + c_wspcRParens) wregex(c_wspc + L"[-+]?" + c_wspcLParens + c_signedDecFloat + L"[e]([+]|[-])+\\d+" + c_wspcRParens)
}; };
static const array<array<wregex, 5>, 4> programmerModePatterns = static const array<array<wregex, 5>, 4> programmerModePatterns =
{ { { {