Difference between revisions of "FindRegex"

From SCAR Divi Manual
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
  
 
==Availability==
 
==Availability==
SCAR Divi 3.10 > Current <span style="color:#FF0000">(Deprecated, use [[PregMatch]])</span>
+
SCAR Divi 3.10 > 3.34
  
 
==Description==
 
==Description==

Latest revision as of 12:10, 25 July 2012

Definition

function FindRegex(const Subject, Pattern: AnsiString): AnsiString;

Availability

SCAR Divi 3.10 > 3.34

Description

Matches a regular expression defined by Pattern in a string defined by Subject and returns the matched string. The pattern is defined literally and does not allow for the use of modifiers, it is case-sensitive.

Example

begin
  WriteLn(FindRegex('Hello World! 123', '\d+'));
end.

Output:

123

See Also