| 66 | } |
| 67 | |
| 68 | string StringReplace(const string& str, const string& oldsub, |
| 69 | const string& newsub) { |
| 70 | string out = str; |
| 71 | RE2::GlobalReplace(&out, oldsub, newsub); |
| 72 | return out; |
| 73 | } |
| 74 | |
| 75 | namespace { |
| 76 | string StripQuote(const string& s) { |
no outgoing calls