MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / FullMatch

Function FullMatch

tests/gtest/gtest.h:1159–1161  ·  view source on GitHub ↗

FullMatch(str, re) returns true iff regular expression re matches the entire str. PartialMatch(str, re) returns true iff regular expression re matches a substring of str (including str itself).

Source from the content-addressed store, hash-verified

1157 // PartialMatch(str, re) returns true iff regular expression re
1158 // matches a substring of str (including str itself).
1159 static bool FullMatch(const ::std::string& str, const RE& re) {
1160 return FullMatch(str.c_str(), re);
1161 }
1162 static bool PartialMatch(const ::std::string& str, const RE& re) {
1163 return PartialMatch(str.c_str(), re);
1164 }

Callers 1

MatchAndExplainMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected