List of Regex methods: Difference between revisions
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 | <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 | <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 | <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.
| Method | Description |
|---|---|
| Copy | Return a copy of a Regex object |
| DeepCopy | Return a deep copy of a Regex object |
| IsUnicode | Is this a Unicode regular expression |
| Locate | Find next item in Stringlist that matches a regex |
| LocateUp | Find next item in Stringlist that matches a regex |
| Match | Position after match of regex |
| New | Create new Regex instance |
| Options | Regular expression options |
| RegexString | String regular expression |
| RegexUnicode | Unicode regular expression |
| Replace | Replace regex match(es) |
| ReplaceString | String replacement value |
| ReplaceUnicode | Unicode replacement value |
| Split | Split string using regex, creating new Stringlist |
| Subset | Create subset of Stringlist that matches a regex |
| Trace | Trace regular expression processing |
| UnicodeReplace | Replace regex match(es) for Unicode |