Sign in
pigweed
/
third_party
/
github
/
google
/
benchmark
/
056a008afa5eec012f9b8264b3d2facc96cafd9c
/
.
/
cmake
/
std_regex.cpp
blob: 2059a9f08f74742cc006ceb2152fcd32a94b90a9 [
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
;
}