25#ifndef _OCPN_UTILS_H__
26#define _OCPN_UTILS_H__
36bool endswith(
const std::string& s,
const std::string& suffix);
39bool startswith(
const std::string& s,
const std::string& prefix);
45std::string
ltrim(
const std::string& s);
51std::string
rtrim(
const std::string& s);
57std::string
trim(std::string s);
63std::string
join(std::vector<std::string> v,
char c);
66std::string
tolower(
const std::string& s);
69std::vector<std::string>
split(
const char* s,
const std::string& delimiter);
72std::vector<std::string>
split(
const std::string& s,
73 const std::string& delimiter);
76bool exists(
const std::string& path);
79void mkdir(
const std::string path);
85bool replace(std::string& str,
const std::string& from,
const std::string& to);
88void copy_file(
const std::string& src_path,
const std::string& dest_path);
98std::string
printable(
const std::string& str);
Standard, mostly strings utilities.
bool replace(std::string &str, const std::string &from, const std::string &to)
Perform in place substitution in str, replacing "from" with "to".
bool startswith(const std::string &str, const std::string &prefix)
Return true if s starts with given prefix.
std::string tolower(const std::string &input)
Return copy of s with all characters converted to lower case.
std::string printable(const std::string &str)
Return copy of str with non-printable chars replaced by hex like "<0D>".
std::vector< std::string > split(const char *token_string, const std::string &delimiter)
Return vector of items in s separated by delimiter.
std::string trim(std::string s)
Strip possibly trailing and/or leading space characters in s.
std::string rtrim(const std::string &arg)
Strip possibly trailing space characters in s.
bool endswith(const std::string &str, const std::string &suffix)
Return true if s ends with given suffix.
std::string ltrim(const std::string &arg)
Strip possibly leading space characters in s.
void copy_file(const std::string &src_path, const std::string &dest_path)
Copy file contents in path src_path to dest_path.
bool exists(const std::string &name)
bool N0183CheckSumOk(const std::string &sentence)
Check if checksum in a NMEA0183 sentence is correct.
std::string join(std::vector< std::string > v, char c)
Return a single string being the concatenation of all elements in v with character c in between.
void mkdir(const std::string path)