Difference between revisions of "RegexPos"
From SCAR Divi Manual
(→Availability) |
|||
Line 25: | Line 25: | ||
*[[ReplaceRegex]] | *[[ReplaceRegex]] | ||
− | [[Category: | + | [[Category:Deprecated Functions]] |
− | |||
− |
Revision as of 18:23, 20 October 2011
Definition
function RegexPos(const Subject, Pattern: AnsiString): Integer;
Availability
SCAR Divi 3.10 > Current (Deprecated, use PregMatchEx)
Description
Matches a regular expression defined by Pattern in a string defined by Subject and returns the position of matched string in Subject. The pattern is defined literally and does not allow for the use of modifiers, it is case-sensitive.
Example
begin WriteLn(RegexPos('Hello World! 123', '\d+')); end.
Output:
14