System.RegularExpressionsCore.TPerlRegEx.Split

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Split(const Strings: TStrings; Limit: Integer);

C++

void __fastcall Split(System::Classes::TStrings* const Strings, int Limit);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.RegularExpressionsCore.pas
System.RegularExpressionsCore.hpp
System.RegularExpressionsCore TPerlRegEx

Description

Splits Subject along regex matches.

The text between each regex match is appended to the list passed in the Strings parameter. If Limit >= 1, at most Limit strings are appended. Capturing groups are ignored.

See Also