Counts the number of quotes in s.
| 100 | |
| 101 | // Counts the number of quotes in s. |
| 102 | int64_t CountQuotes(std::string_view s) { |
| 103 | return static_cast<int64_t>(std::count(s.begin(), s.end(), '"')); |
| 104 | } |
| 105 | |
| 106 | // Matching quote pair character length. |
| 107 | constexpr int64_t kQuoteCount = 2; |
no test coverage detected