System.RegularExpressions.TGroupCollection.TryGetNamedGroup
Delphi
function TryGetNamedGroup(const Index: string; out Group: TGroup): Boolean;
C++
bool __fastcall TryGetNamedGroup(const System::UnicodeString Index, /* out */ TGroup &Group);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.RegularExpressions.pas System.RegularExpressions.hpp |
System.RegularExpressions | TGroupCollection |
Description
Returns the group identified by the collection index. If a group with index exists in the collection, TryGetNamedGroup returns True
, otherwise, it returns False
.