System.SysUtils.IsDelimiter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsDelimiter(const Delimiters, S: string; Index: Integer): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall IsDelimiter(const System::UnicodeString Delimiters, const System::UnicodeString S, int Index)/* overload */;

Properties

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

Description

Indicates whether a specified character in a string matches one of a set of delimiters.

Call IsDelimiter to determine whether the character at byte offset Index in the string S is one of the delimiters in the string Delimiters. Index is the index of the byte in question, where 1 is the first byte of the string, 2 is the second byte, and so on.

When working with a multi-byte character system (MBCS), IsDelimiter checks that the indicated byte is not part of a double-byte character. The delimiters in the Delimiters parameter must all be single-byte characters.

See Also