// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_STRING_SPLIT_H_ #define BASE_STRING_SPLIT_H_ #pragma once #include #include #include #include "base/string16.h" namespace base { bool SplitStringIntoKeyValues( const std::string& line, char key_value_delimiter, std::string* key, std::vector* values); bool SplitStringIntoKeyValuePairs( const std::string& line, char key_value_delimiter, char key_value_pair_delimiter, std::vector >* kv_pairs); // The same as SplitString, but use a substring delimiter instead of a char. void SplitStringUsingSubstr(const string16& str, const string16& s, std::vector* r); void SplitStringUsingSubstr(const std::string& str, const std::string& s, std::vector* r); } // namespace base #endif // BASE_STRING_SPLIT_H