2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2013-05-21 20:37:06 +02:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-04-10 06:17:14 +02:00
|
|
|
#include "util/string_util.h"
|
2013-05-21 20:37:06 +02:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-05-21 20:37:06 +02:00
|
|
|
|
2014-11-21 17:05:28 +01:00
|
|
|
std::vector<std::string> StringSplit(const std::string& arg, char delim) {
|
2014-04-10 06:17:14 +02:00
|
|
|
std::vector<std::string> splits;
|
|
|
|
std::stringstream ss(arg);
|
|
|
|
std::string item;
|
|
|
|
while (std::getline(ss, item, delim)) {
|
2013-05-21 20:37:06 +02:00
|
|
|
splits.push_back(item);
|
|
|
|
}
|
|
|
|
return splits;
|
|
|
|
}
|
2014-04-10 06:17:14 +02:00
|
|
|
|
|
|
|
} // namespace rocksdb
|