MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / Trim

Method Trim

cpp/iedriver/StringUtilities.cpp:155–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155std::string StringUtilities::Trim(const std::string& input) {
156 return TrimRight(TrimLeft(input));
157}
158
159std::string StringUtilities::TrimLeft(const std::string& input) {
160 size_t startpos = input.find_first_not_of(WHITESPACE);

Calls

no outgoing calls