-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuiltins.cpp
79 lines (63 loc) · 1.56 KB
/
builtins.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <random>
#include <string>
#include <iostream>
#include <random>
#include <sstream>
#include <cctype>
#include <array>
int INT(const float& num1) {
return (int)num1;
}
float RANDOM() {
return std::rand();
}
// STRING FUNCTIONS
std::string MID(const std::string& ThisString, int x, int y) {
return ThisString.substr(x, x + y - 1);
}
int LENGTH(const std::string& ThisString) {
return ThisString.length();
}
std::string SUBSTRING(const std::string& ThisString, int start, int end) {
return ThisString.substr(start, end);
}
std::string LEFT(const std::string& ThisString, int x) {
return ThisString.substr(0, x);
}
std::string RIGHT(const std::string& ThisString, int x) {
return ThisString.substr(ThisString.length() - x, x);
}
char LCASE(char ThisChar) {
return std::tolower(ThisChar);
}
char UCASE(char ThisChar) {
return std::toupper(ThisChar);
}
std::string TO_UPPER(const std::string& ThisString) {
std::string result = ThisString;
for (char& c : result) {
c = std::toupper(c);
}
return result;
}
std::string TO_LOWER(const std::string& ThisString) {
std::string result = ThisString;
for (char& c : result) {
c = std::tolower(c);
}
return result;
}
std::string NUM_TO_STRING(double x) {
std::ostringstream oss;
oss << x;
return oss.str();
}
double STRING_TO_NUM(const std::string& x) {
return std::stod(x); // std::stod converts string to double
}
int ASC(char ThisChar) {
return static_cast<int>(ThisChar);
}
char CHR(int x) {
return static_cast<char>(x);
}