| 220 | } |
| 221 | |
| 222 | std::string RemoveAll(const StringPiece& s, const StringPiece& substr, bool fill_blank) |
| 223 | { |
| 224 | return fill_blank ? ReplaceAll(s, substr, " ") : |
| 225 | ReplaceAll(s, substr, ""); |
| 226 | } |
| 227 | |
| 228 | template <typename StringType, typename ITR> |
| 229 | static inline |