Rev 997 | Rev 1011 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 997 | Rev 1008 | ||
|---|---|---|---|
| Line 48... | Line 48... | ||
| 48 | 48 | ||
| 49 | vector<string> explode(string delimiter, string str); |
49 | vector<string> explode(string delimiter, string str); |
| 50 | string strtoupper(string s); |
50 | string strtoupper(string s); |
| 51 | string strtolower(string s); |
51 | string strtolower(string s); |
| 52 | string trim(string s); |
52 | string trim(string s); |
| 53 | string trim(string s, char c); |
53 | string trim(const string s, char c); |
| 54 | int stoi(const string s); |
54 | int stoi(const string s); |
| 55 | string itos(int i); |
55 | string itos(int i); |
| 56 | string utos(unsigned int i); |
56 | string utos(unsigned int i); |
| 57 | unsigned int stou(const string s); |
57 | unsigned int stou(const string s); |
| 58 | float stof(const string s); |
58 | float stof(const string s); |