c4d_string.h File Reference

Classes

class   String

Namespaces

  maxon

函数

maxon::String   ToString (const String &val, const maxon::FormatStatement *formatStatement, maxon::Bool checkDatatype=false)
const maxon::String MaxonConvert (const String &val)
String   MaxonConvert (const maxon::String &val)
static Bool   operator== (const String &left, const Char *right)
static Bool   operator== (const String &left, const String &right)
static Bool   operator!= (const String &left, const String &right)
static Bool   operator!= (const String &left, const Char *right)
static Bool   operator< (const String &left, const String &right)

Function Documentation

◆  ToString()

maxon::String ToString ( const String val ,
const maxon::FormatStatement formatStatement ,
maxon::Bool   checkDatatype = false  
)

◆  MaxonConvert() [1/2]

const maxon::String & MaxonConvert ( const String val )

◆  MaxonConvert() [2/2]

String MaxonConvert ( const maxon::String val )

◆  operator==() [1/2]

static Bool operator== ( const String left ,
const Char right  
)
static

Checks if the strings are equal. Deprecated . Use maxon::String::Compare(...).

注意
The comparison is done alphanumerically and case-sensitive.
参数
[in] left The left-hand operand string.
[in] right The right-hand operand string.
返回
true if the strings are equal, otherwise false .

◆  operator==() [2/2]

static Bool operator== ( const String left ,
const String right  
)
static

Checks if the strings are equal. Deprecated . Use maxon::String::Compare(...).

注意
The comparison is done alphanumerically and case-sensitive.
参数
[in] left The left-hand operand string.
[in] right The right-hand operand string.
返回
true if the strings are equal, otherwise false .

◆  operator!=() [1/2]

static Bool operator!= ( const String left ,
const String right  
)
static

Checks if two strings are different. Deprecated . Use maxon::String::Compare(...).

注意
The comparison is done alphanumerically and case-sensitive.
参数
[in] left The left-hand operand string.
[in] right The right-hand operand string.
返回
true if the two strings are different, otherwise false .

◆  operator!=() [2/2]

static Bool operator!= ( const String left ,
const Char right  
)
static

Checks if two strings are different. Deprecated . Use maxon::String::Compare(...).

注意
The comparison is done alphanumerically and case-sensitive.
参数
[in] left The left-hand operand string.
[in] right The right-hand operand string.
返回
true if the two strings are different, otherwise false .

◆  operator<()

static Bool operator< ( const String left ,
const String right  
)
static

Compares the strings to see if the the left-hand string is less than the right-hand string. Deprecated . Use maxon::String::Compare(...).

注意
The comparison is done alphanumerically and case-sensitive.
参数
[in] left The left-hand operand string.
[in] right The right-hand operand string.
返回
The result of the comparison.