Icon SameText

Unit: Internal

Available In: Client and Server Applications

function SameText(const A, B: String): Boolean

The SameText function compares the A string input parameter with the B string input parameter without case-sensitivity. The comparison is locale-insensitive. The return value is a Boolean value of True if A is equal to B, and False if A is not equal to B.

Examples

X := SameStr('Absolute', 'ABSOLUTE');  // X is True
Image