Icon SameStr

Unit: Internal

Available In: Client and Server Applications

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

The SameStr function compares the A string input parameter with the B string input parameter with 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', 'Baseball');  // X is False
Image