mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
402 B
13 lines
402 B
#ifndef __STRING_UTILS_H__ |
|
#define __STRING_UTILS_H__ |
|
|
|
#include <string> |
|
#include <set> |
|
#include <vector> |
|
|
|
bool StripString(std::string& src); |
|
std::set<std::string> SplitString(const std::string& src, const char seporator); |
|
bool ParseString(const std::string& src, std::string& key, std::string& value); |
|
std::vector<std::string> SplitStringVector(const std::string& src, const char seporator); |
|
|
|
#endif
|
|
|