Sign in
pigweed
/
third_party
/
github
/
google
/
benchmark
/
3e9264dcf10e9fcc1d9ff25924fc2ca45a41b71f
/
.
/
cmake
/
std_regex.cpp
blob: 4f227d44f648ec1966027bd8cecd27bfe8516f76 [
file
] [
log
] [
blame
]
#include
<regex>
#include
<string>
int
main
()
{
const
std
::
string str
=
"test0159"
;
const
std
::
regex re
(
"^[a-z]+[0-9]+$"
,
std
::
regex_constants
::
extended
|
std
::
regex_constants
::
nosubs
);
return
std
::
regex_search
(
str
,
re
)
?
0
:
-
1
;
}