System.Character.TCharHelper.IsSymbol

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsSymbol: Boolean; overload;
class function IsSymbol(const S: string; Index: Integer): Boolean; overload; static;
class function IsSymbol(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 symbol in the Unicode specifications.

This method is overloaded:

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

See Also