Functions | |
| String | UpperCase (PCChar8 text) |
| Upper case. More... | |
| String | LowerCase (PCChar8 text) |
| Lower case. More... | |
| String | TrimLeft (PCChar8 text) |
| Trim left. Removes blank characters on the left of the string. More... | |
| String | TrimRight (PCChar8 text) |
| Trim right. Removes blank characters on the right of the string. More... | |
| String | Trim (PCChar8 text) |
| Trim left and right. Removes blank characters on both side of the string. More... | |
| String | Format (PCChar8 text, PCChar8 argument0=NULL, PCChar8 argument1=NULL, PCChar8 argument2=NULL, PCChar8 argument3=NULL, PCChar8 argument4=NULL, PCChar8 argument5=NULL, PCChar8 argument6=NULL, PCChar8 argument7=NULL, PCChar8 argument8=NULL, PCChar8 argument9=NULL) |
| Formats. Usage : Format("Value of {0} : {1}", "parameter1", ToString(x)); More... | |
| String Format | ( | PCChar8 | text, |
| PCChar8 | argument0 = NULL, |
||
| PCChar8 | argument1 = NULL, |
||
| PCChar8 | argument2 = NULL, |
||
| PCChar8 | argument3 = NULL, |
||
| PCChar8 | argument4 = NULL, |
||
| PCChar8 | argument5 = NULL, |
||
| PCChar8 | argument6 = NULL, |
||
| PCChar8 | argument7 = NULL, |
||
| PCChar8 | argument8 = NULL, |
||
| PCChar8 | argument9 = NULL |
||
| ) |
Formats. Usage : Format("Value of {0} : {1}", "parameter1", ToString(x));
| text | The text. Use {0}, {1}, ... to denote arguments. |
| argument0 | (optional) the argument 0. |
| argument1 | (optional) the first argument. |
| argument2 | (optional) the second argument. |
| argument3 | (optional) the third argument. |
| argument4 | (optional) the fourth argument. |
| argument5 | (optional) the fifth argument. |
| argument6 | (optional) the argument 6. |
| argument7 | (optional) the argument 7. |
| argument8 | (optional) the argument 8. |
| argument9 | (optional) the argument 9. |
| String LowerCase | ( | PCChar8 | text | ) |
Lower case.
| text | The text. |
| String Trim | ( | PCChar8 | text | ) |
Trim left and right. Removes blank characters on both side of the string.
| text | The text. |
| String TrimLeft | ( | PCChar8 | text | ) |
Trim left. Removes blank characters on the left of the string.
| text | The text. |
| String TrimRight | ( | PCChar8 | text | ) |
Trim right. Removes blank characters on the right of the string.
| text | The text. |
| String UpperCase | ( | PCChar8 | text | ) |
Upper case.
| text | The text. |