System.Tether.Manager.TTetheringManagerCommand.Split

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function Split(const AString: string; const ASeparator: Char): TArray<string>; static;

C++

static System::DynamicArray<System::UnicodeString> __fastcall Split(const System::UnicodeString AString, const System::WideChar ASeparator);

Properties

Type Visibility Source Unit Parent
function public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringManagerCommand

Description

The function splits the string AString into an array of strings and returns the array.

The split is done using the separator ASeparator, which is unescaped from each subsequent string before that string is added to the result.

See Also