21using std::string_view;
26bool Integer::is(
const string& str) {
29 trimmedStr.empty() ==
false && find_if(trimmedStr.begin() + (trimmedStr[0] ==
'-'?1:0), trimmedStr.end(), [](
char c) { return isdigit(c) == false; }) == trimmedStr.end();
35 trimmedStr.empty() ==
false && find_if(trimmedStr.begin() + (trimmedStr[0] ==
'-'?1:0), trimmedStr.end(), [](
char c) { return isdigit(c) == false; }) == trimmedStr.end();
40 if (trimmedStr.empty() ==
true)
return 0;
41 if (trimmedStr ==
"-")
return -0;
42 return stoi(trimmedStr);
47 if (trimmedStr.empty() ==
true)
return 0;
48 if (trimmedStr ==
"-")
return -0;
50 from_chars(&trimmedStr[0], &trimmedStr[trimmedStr.size()], result);
56 char encodingCharSet[] =
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW-+/*.";
57 for (
auto i = 0; i < 6; i++) {
58 auto charIdx = (decodedInt >> (i * 6)) & 63;
59 encodedString = encodingCharSet[charIdx] + encodedString;
64 char encodingCharSet[] =
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW-+/*.";
66 for (
auto i = 0; i < encodedString.length(); i++) {
68 char c = encodedString[encodedString.length() - i - 1];
69 char* codePtr = strchr(encodingCharSet, c);
70 if (codePtr == NULL) {
73 codeIdx = codePtr - encodingCharSet;
75 decodedInt+= codeIdx << (i * 6);
static bool viewIs(const string_view &str)
Check if given string is a integer string.
static int parse(const string &str)
Parse integer.
static const uint32_t decode(const string &encodedString)
Decodes an 6 char string representation to a unsigned 32 bit integer.
static const string encode(const uint32_t decodedInt)
Encodes an 32 bit unsigned integer to a 6 char string representation.
static int viewParse(const string_view &str)
Parse integer.