API Guides > ConceptRT 3.x

Detailed Description

Functions

bool SameText (PCChar8 textA, PCChar8 textB, bool ignoreCase=true)
 Compare a string to another. More...
 
bool operator== (const BaseStaticString &string1, const BaseStaticString &string2)
 Equality operator. More...
 
bool operator!= (const BaseStaticString &string1, const BaseStaticString &string2)
 Not equality operator. More...
 
bool operator< (const BaseStaticString &string1, const BaseStaticString &string2)
 Less-than comparison operator. More...
 
bool operator<= (const BaseStaticString &string1, const BaseStaticString &string2)
 Less-than-or-equal comparison operator. More...
 
bool operator> (const BaseStaticString &string1, const BaseStaticString &string2)
 Greater-than comparison operator. More...
 
bool operator>= (const BaseStaticString &string1, const BaseStaticString &string2)
 Greater-than-or-equal comparison operator. More...
 
bool operator== (const BaseStaticString &string1, PCChar8 string2)
 Equality operator. More...
 
bool operator== (PCChar8 string1, const BaseStaticString &string2)
 Equality operator. More...
 
bool operator!= (const BaseStaticString &string1, PCChar8 string2)
 Not equality operator. More...
 
bool operator!= (PCChar8 string1, const BaseStaticString &string2)
 Not equality operator. More...
 
bool operator< (const BaseStaticString &string1, PCChar8 string2)
 Less-than comparison operator. More...
 
bool operator< (PCChar8 string1, const BaseStaticString &string2)
 Less-than comparison operator. More...
 
bool operator> (const BaseStaticString &string1, PCChar8 string2)
 Greater-than comparison operator. More...
 
bool operator> (PCChar8 string1, const BaseStaticString &string2)
 Greater-than comparison operator. More...
 
bool operator<= (const BaseStaticString &string1, PCChar8 string2)
 Less-than-or-equal comparison operator. More...
 
bool operator<= (PCChar8 string1, const BaseStaticString &string2)
 Less-than-or-equal comparison operator. More...
 
bool operator>= (const BaseStaticString &s1, PCChar8 string2)
 Greater-than-or-equal comparison operator. More...
 
bool operator>= (PCChar8 string1, const BaseStaticString &string2)
 Greater-than-or-equal comparison operator. More...
 

Function Documentation

bool operator!= ( const BaseStaticString string1,
const BaseStaticString string2 
)

Not equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered not equivalent.
bool operator!= ( const BaseStaticString string1,
PCChar8  string2 
)

Not equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered not equivalent.
bool operator!= ( PCChar8  string1,
const BaseStaticString string2 
)

Not equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered not equivalent.
bool operator< ( const BaseStaticString string1,
const BaseStaticString string2 
)

Less-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than the second.
bool operator< ( const BaseStaticString string1,
PCChar8  string2 
)

Less-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than the second.
bool operator< ( PCChar8  string1,
const BaseStaticString string2 
)

Less-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than the second.
bool operator<= ( const BaseStaticString string1,
const BaseStaticString string2 
)

Less-than-or-equal comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than or equal to the second.
bool operator<= ( const BaseStaticString string1,
PCChar8  string2 
)

Less-than-or-equal comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than or equal to the second.
bool operator<= ( PCChar8  string1,
const BaseStaticString string2 
)

Less-than-or-equal comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is less than or equal to the second.
bool operator== ( const BaseStaticString string1,
const BaseStaticString string2 
)

Equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered equivalent.
bool operator== ( const BaseStaticString string1,
PCChar8  string2 
)

Equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered equivalent.
bool operator== ( PCChar8  string1,
const BaseStaticString string2 
)

Equality operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the parameters are considered equivalent.
bool operator> ( const BaseStaticString string1,
const BaseStaticString string2 
)

Greater-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than to the second.
bool operator> ( const BaseStaticString string1,
PCChar8  string2 
)

Greater-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than to the second.
bool operator> ( PCChar8  string1,
const BaseStaticString string2 
)

Greater-than comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than to the second.
bool operator>= ( const BaseStaticString string1,
const BaseStaticString string2 
)

Greater-than-or-equal comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than or equal to the second.
bool operator>= ( const BaseStaticString s1,
PCChar8  string2 
)

Greater-than-or-equal comparison operator.

Parameters
s1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than or equal to the second.
bool operator>= ( PCChar8  string1,
const BaseStaticString string2 
)

Greater-than-or-equal comparison operator.

Parameters
string1The first instance to compare.
string2The second instance to compare.
Returns
true if the first parameter is greater than or equal to the second.
bool SameText ( PCChar8  textA,
PCChar8  textB,
bool  ignoreCase = true 
)

Compare a string to another.

Parameters
textAFirst text. NULL supported.
textBSecond text. NULL supported.
ignoreCaseIgnore the case while comparing characters.
Returns
Returns true is the first text and the second text are the same.