System.WideStrUtils.IsUTF8TrailByte

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsUTF8TrailByte(Lead: AnsiChar): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall IsUTF8TrailByte(char Lead);

Properties

Type Visibility Source Unit Parent
function public
System.WideStrUtils.pas
System.WideStrUtils.hpp
System.WideStrUtils System.WideStrUtils

Description

Checks whether a character is a valid UTF-8 trail byte.

Call IsUTF8TrailByte to check whether a character is a valid UTF-8 trail byte.

All bytes between 128 ($80) .. 191 ($BF) are valid UTF-8 trail bytes.

See Also