mirror of
https://github.com/BotChain-Robots/rpc.git
synced 2026-03-09 23:12:27 +01:00
37 lines
749 B
C++
37 lines
749 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-05.
|
|
//
|
|
|
|
#ifndef STRING_H
|
|
#define STRING_H
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <cctype>
|
|
#include <algorithm>
|
|
|
|
inline std::vector<std::string> split(const std::string &str, const char delimiter) {
|
|
std::vector<std::string> result;
|
|
std::stringstream ss(str);
|
|
std::string token;
|
|
|
|
while (std::getline(ss, token, delimiter)) {
|
|
result.push_back(token);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
inline bool is_integer(const std::string& s) {
|
|
if (s.empty()) return false;
|
|
|
|
size_t start = 0;
|
|
if (s[0] == '-' || s[0] == '+')
|
|
start = 1;
|
|
|
|
return start < s.size() &&
|
|
std::all_of(s.begin() + start, s.end(), ::isdigit);
|
|
}
|
|
|
|
#endif // STRING_H
|