API Guides > ConceptRT 3.x

Detailed Description

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...
 

Function Documentation

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));

Parameters
textThe 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.
Returns
The formatted value.
Note
return a String which is limited to STRING_MAX_LENGTH.
String LowerCase ( PCChar8  text)

Lower case.

Parameters
textThe text.
Returns
The lower text.
Note
return a String which is limited to STRING_MAX_LENGTH.
String Trim ( PCChar8  text)

Trim left and right. Removes blank characters on both side of the string.

Parameters
textThe text.
Returns
The trimed string.
Note
return a String which is limited to STRING_MAX_LENGTH.
String TrimLeft ( PCChar8  text)

Trim left. Removes blank characters on the left of the string.

Parameters
textThe text.
Returns
The trimed string.
Note
return a String which is limited to STRING_MAX_LENGTH.
String TrimRight ( PCChar8  text)

Trim right. Removes blank characters on the right of the string.

Parameters
textThe text.
Returns
The trimed string.
Note
return a String which is limited to STRING_MAX_LENGTH.
String UpperCase ( PCChar8  text)

Upper case.

Parameters
textThe text.
Returns
The upper text.
Note
return a String which is limited to STRING_MAX_LENGTH.