System.RegularExpressionsCore.TPerlRegEx.Compile

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Compile;

C++

void __fastcall Compile();

Properties

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

Description

Compiles the regular expression.

Before it can be used, the regular expression needs to be compiled. Match will call Compile automatically if you did not do so. If the regular expression will be applied in time-critical code, you may wish to compile it during your application's initialization. You may also want to call Study to further optimize the execution of the regex.

See Also