MCPcopy Create free account
hub / github.com/chen3feng/toft / RemoveFirst

Function RemoveFirst

base/string/algorithm.cpp:217–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217std::string RemoveFirst(const StringPiece& s, const StringPiece& substr, bool fill_blank)
218{
219 return fill_blank ? ReplaceFirst(s, substr, " ") : ReplaceFirst(s, substr, "");
220}
221
222std::string RemoveAll(const StringPiece& s, const StringPiece& substr, bool fill_blank)
223{

Callers

nothing calls this directly

Calls 1

ReplaceFirstFunction · 0.85

Tested by

no test coverage detected