MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / Regex

Class Regex

include/cucumber-cpp/internal/utils/Regex.hpp:41–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39};
40
41class Regex {
42private:
43 std::regex regexImpl;
44 const std::string regexString;
45
46public:
47 Regex(std::string expr);
48
49 std::shared_ptr<RegexMatch> find(const std::string& expression) const;
50 std::shared_ptr<RegexMatch> findAll(const std::string& expression) const;
51
52 std::string str() const;
53};
54
55}
56}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected