System.Character.TCharHelper.IsWhiteSpace

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

This method is overloaded:

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

See Also