List of Regex methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
(Automatically generated page update)
 
Line 8: Line 8:
<tr><td valign="top">[[Copy (Regex function)|Copy]]</td><td valign="top">Return a copy of a Regex object</td></tr>
<tr><td valign="top">[[Copy (Regex function)|Copy]]</td><td valign="top">Return a copy of a Regex object</td></tr>
<tr><td valign="top">[[DeepCopy (Regex function)|DeepCopy]]</td><td valign="top">Return a deep copy of a Regex object</td></tr>
<tr><td valign="top">[[DeepCopy (Regex function)|DeepCopy]]</td><td valign="top">Return a deep copy of a Regex object</td></tr>
<tr><td valign="top">[[IsUnicode (Regex property)|IsUnicode]]</td><td valign="top">Is this a Unicode regular exprssion</td></tr>
<tr><td valign="top">[[IsUnicode (Regex property)|IsUnicode]]</td><td valign="top">Is this a Unicode regular expression</td></tr>
<tr><td valign="top">[[Locate (Regex function)|Locate]]</td><td valign="top">Find next item in Stringlist that matches a regex</td></tr>
<tr><td valign="top">[[Locate (Regex function)|Locate]]</td><td valign="top">Find next item in Stringlist that matches a regex</td></tr>
<tr><td valign="top">[[LocateUp (Regex function)|LocateUp]]</td><td valign="top">Find next item in Stringlist that matches a regex</td></tr>
<tr><td valign="top">[[LocateUp (Regex function)|LocateUp]]</td><td valign="top">Find next item in Stringlist that matches a regex</td></tr>
Line 17: Line 17:
<tr><td valign="top">[[RegexUnicode (Regex property)|RegexUnicode]]</td><td valign="top">Unicode regular expression</td></tr>
<tr><td valign="top">[[RegexUnicode (Regex property)|RegexUnicode]]</td><td valign="top">Unicode regular expression</td></tr>
<tr><td valign="top">[[Replace (Regex function)|Replace]]</td><td valign="top">Replace regex match(es)</td></tr>
<tr><td valign="top">[[Replace (Regex function)|Replace]]</td><td valign="top">Replace regex match(es)</td></tr>
<tr><td valign="top">[[ReplaceString (Regex property)|ReplaceString]]</td><td valign="top">String replacment value</td></tr>
<tr><td valign="top">[[ReplaceString (Regex property)|ReplaceString]]</td><td valign="top">String replacement value</td></tr>
<tr><td valign="top">[[ReplaceUnicode (Regex property)|ReplaceUnicode]]</td><td valign="top">Unicode replacment value</td></tr>
<tr><td valign="top">[[ReplaceUnicode (Regex property)|ReplaceUnicode]]</td><td valign="top">Unicode replacement value</td></tr>
<tr><td valign="top">[[Split (Regex function)|Split]]</td><td valign="top">Split string using regex, creating new Stringlist</td></tr>
<tr><td valign="top">[[Split (Regex function)|Split]]</td><td valign="top">Split string using regex, creating new Stringlist</td></tr>
<tr><td valign="top">[[Subset (Regex function)|Subset]]</td><td valign="top">Create subset of Stringlist that matches a regex</td></tr>
<tr><td valign="top">[[Subset (Regex function)|Subset]]</td><td valign="top">Create subset of Stringlist that matches a regex</td></tr>

Latest revision as of 14:50, 24 March 2022

The following are the available Regex class methods.

MethodDescription
CopyReturn a copy of a Regex object
DeepCopyReturn a deep copy of a Regex object
IsUnicodeIs this a Unicode regular expression
LocateFind next item in Stringlist that matches a regex
LocateUpFind next item in Stringlist that matches a regex
MatchPosition after match of regex
NewCreate new Regex instance
OptionsRegular expression options
RegexStringString regular expression
RegexUnicodeUnicode regular expression
ReplaceReplace regex match(es)
ReplaceStringString replacement value
ReplaceUnicodeUnicode replacement value
SplitSplit string using regex, creating new Stringlist
SubsetCreate subset of Stringlist that matches a regex
TraceTrace regular expression processing
UnicodeReplaceReplace regex match(es) for Unicode

See also