#include <arstring.h>
Public Member Functions | |
| int | ReplaceChar (char search, char replace) |
| Replaces all occurrences of a character with another. | |
| void | RemoveSpaces () |
| Removes all spaces from the string. | |
| int | IntegerValue () |
| Converts the string to an integer value. | |
| std::vector< ARString > | Split (char delimiter) const |
| Splits the string up into separate elements. | |
| void | NumericValue (int &value) |
| Returns the integer value for the string. | |
| void | NumericValue (double &value) |
| Returns the double value for the string. | |
| void | NumericValue (float &value) |
| Returns the float value for the string. | |
| void | ToLower () |
| Converts the entire string to lower case. | |
| void | ToUpper () |
| Converts the entire string to upper case. | |
Static Public Member Functions | |
| ARString | FromInteger (int number) |
| Constructs an ARString object from an integer value. | |
This class is derived from the std::string class therefore all members variable/functions are availiable by the ARString class.
|
|
Constructs an ARString object from an integer value.
|
|
|
Converts the string to an integer value.
|
|
||||||||||||
|
Replaces all occurrences of a character with another.
|
|
|
Splits the string up into separate elements.
|
1.3.9.1