IsLowSurrogate()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

IsLowSurrogate()

OutputVar := MfChar.IsLowSurrogate(c)
OutputVar := MfChar.IsLowSurrogate(s, index)

MfChar.IsLowSurrogate(c)

Indicates whether the specified character of c is a low surrogate.

Returns

Returns true if c is a low surrogate that ranges from U+DC00 through U+DFFF; Otherwise, false.

MfChar.IsLowSurrogate(s, index)

Indicates whether the specified character is a low surrogate for the character at position index in s.

Returns

Returns true if the character at position index in s is a low surrogate that ranges from U+DC00 through U+DFFF; Otherwise, false.

Parameters

c

The character to evaluate. Can be a var containing character or MfChar instance or string var containing hex value Eg:"0x0061". c corresponds to a single linguistic Unicode character.

s

A string. Can be a string var or MfString instance.

index

The zero-based index position of the character to evaluate in s. Can be a Integer var or MfInteger instance.

Throws

Throws MfInvalidOperationException if not called as a static method.
Throws MfArgumentOutOfRangeException if index is not in the valid range of s.
Throws MfNotSupportedException if call to method is outside its overloads.
Throws MfInvalidOperationException if not called as a static method.

Remarks

Static Method.
In addition to representing single characters using a 16-bit code point, UTF-16 encoding allows abstract characters to be represented using two 16-bit code points, which is known as a surrogate pair. The second element in this pair is the low surrogate. Its code point can range from U+DC00 to U+DFFF. An individual surrogate has no interpretation of its own; it is meaningful only when used as part of a surrogate pair.

Related

IsHighSurrogate, IsSurrogate, IsSurrogatePair