Sign in
chromium
/
external
/
github.com
/
llvm
/
llvm-project.git
/
deebf47ab12343e83f2b8ce8e80bacf83c399ac0
/
.
/
third-party
/
benchmark
/
cmake
/
std_regex.cpp
blob: 696f2a26bce02fbcec39ee1786c151400290b31e [
file
] [
log
] [
blame
]
#include
<regex>
#include
<string>
int
main
()
{
const
std
::
string str
=
"test0159"
;
std
::
regex re
;
re
=
std
::
regex
(
"^[a-z]+[0-9]+$"
,
std
::
regex_constants
::
extended
|
std
::
regex_constants
::
nosubs
);
return
std
::
regex_search
(
str
,
re
)
?
0
:
-
1
;
}