System.Character.TCharHelper.IsSeparator

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsSeparator: Boolean; overload;
class function IsSeparator(const S: string; Index: Integer): Boolean; overload; static;
class function IsSeparator(C: UCS4Char): Boolean; overload; static;

Properties

Type Visibility Source Unit Parent
function public System.Character.pas System.Character TCharHelper

Description

Determines whether a UTF-16 character is defined as a separator in the Unicode specifications.

This method is overloaded:

  • Returns True if the character is defined as a separator in the Unicode specifications.
  • Returns True if the character at Index in string S is defined as a separator in the Unicode specifications.
  • Returns True if the UCS4Char is defined as a separator in the Unicode specifications.

See Also