benchmark/cmake/gnu_posix_regex.cpp
Go to the documentation of this file.
1 #include <gnuregex.h>
2 #include <string>
3 int main() {
4  std::string str = "test0159";
5  regex_t re;
6  int ec = regcomp(&re, "^[a-z]+[0-9]+$", REG_EXTENDED | REG_NOSUB);
7  if (ec != 0) {
8  return ec;
9  }
10  return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
11 }
12 
xds_interop_client.str
str
Definition: xds_interop_client.py:487
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
main
int main()
Definition: benchmark/cmake/gnu_posix_regex.cpp:3


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:59:40