System.AnsiStringBase.operator <=

From RAD Studio API Documentation
Revision as of 00:07, 17 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

C++

bool operator <=(const AnsiStringBase& rhs) const { return !operator>(rhs); }

Properties

Type Visibility Source Unit Parent
function protected dstring.h System AnsiStringBase


Description

Compares two strings.

Returns True if AnsiString is less than or equal to rhs, False otherwise.

Note: operator <= performs a simple byte-level numeric comparison. For locale support, or to ignore case, use the AnsiCompare or AnsiCompareIC methods.

See Also