RegexReplaceCorresponding (Stringlist function): Difference between revisions
m (→Syntax terms) |
m (→Syntax terms) |
||
Line 20: | Line 20: | ||
<td>Indicates that the matched substring should be lowercased when inserted.</td></tr> | <td>Indicates that the matched substring should be lowercased when inserted.</td></tr> | ||
</table> | </table> | ||
<p>The only characters you can escape in a replacement string are dollar sign (<code>$</code>), backslash (<code>\</code>), and the digits <code>0</code> through <code>9</code>. So only these escapes are respected:<code>\\</code>, <code>\$</code>, and <code>\0</code> through <code>\9</code>. No other escapes are allowed in a replacement string &amp;amp;amp;mdash; this includes "shorthand" escapes like <code>\d</code> &amp;amp;amp;mdash; and an "unaccompanied" backslash (<code>\</code>) is an error.</p> | <p>The only characters you can escape in a replacement string are dollar sign (<code>$</code>), backslash (<code>\</code>), and the digits <code>0</code> through <code>9</code>. So only these escapes are respected:<code>\\</code>, <code>\$</code>, and <code>\0</code> through <code>\9</code>. No other escapes are allowed in a replacement string &amp;amp;amp;amp;mdash; this includes "shorthand" escapes like <code>\d</code> &amp;amp;amp;amp;mdash; and an "unaccompanied" backslash (<code>\</code>) is an error.</p> | ||
<p>For example, since the scan for the number that accompanies the meta-$ stops at the first nonnumeric, you use <code>1$0\0</code> to indicate that the first matched substring should go between the numbers <code>1</code> and <code>0</code> in the replacement string.</p></td></tr><tr><th><var>Options</var></th> | <p>For example, since the scan for the number that accompanies the meta-$ stops at the first nonnumeric, you use <code>1$0\0</code> to indicate that the first matched substring should go between the numbers <code>1</code> and <code>0</code> in the replacement string.</p></td></tr><tr><th><var>Options</var></th> | ||
<td>This is an optional, but [[Notation conventions for methods#Named parameters|name required]], parameter supplying a string of single-letter options, which may be specified in uppercase or lowercase, in any combination, and blank separated or not as you prefer. For more information about these options, see [[Regex_processing#Common_regex_options|"Common regex options"]]. | <td>This is an optional, but [[Notation conventions for methods#Named parameters|name required]], parameter supplying a string of single-letter options, which may be specified in uppercase or lowercase, in any combination, and blank separated or not as you prefer. For more information about these options, see [[Regex_processing#Common_regex_options|"Common regex options"]]. | ||
Line 42: | Line 42: | ||
<tr><th>n</th> | <tr><th>n</th> | ||
<td>The number of replacements made. A value greater than 1 indicates option <code>G</code> was in effect.</td></tr> | <td>The number of replacements made. A value greater than 1 indicates option <code>G</code> was in effect.</td></tr> | ||
<tr><th>0</th> | <tr><th><var>0</var></th> | ||
<td>No match: <var class="term">inString</var> not matched by any <var class="term">sl</var> items.</td></tr> | <td>No match: <var class="term">inString</var> not matched by any <var class="term">sl</var> items.</td></tr> | ||
<tr><th><var>-2</var></th> | <tr><th><var>-2</var></th> | ||
Line 72: | Line 72: | ||
%repList = new | %repList = new | ||
text to %repList | text to %repList | ||
&amp;amp;amp; | &amp;amp;amp;amp; | ||
&amp;amp;amp;&amp;amp;amp; | &amp;amp;amp;amp;&amp;amp;amp;amp; | ||
&amp;amp;amp;&amp;amp;amp;&amp;amp;amp; | &amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp; | ||
end text | end text | ||
Line 89: | Line 89: | ||
<p class="code">Status from ReplaceCorresponding is 3 | <p class="code">Status from ReplaceCorresponding is 3 | ||
Output String: &amp;amp;amp;&amp;amp;amp;1&amp;amp;amp;&amp;amp;amp;2&amp;amp;amp;&amp;amp;amp;d | Output String: &amp;amp;amp;amp;&amp;amp;amp;amp;1&amp;amp;amp;amp;&amp;amp;amp;amp;2&amp;amp;amp;amp;&amp;amp;amp;amp;d | ||
</p></ol> | </p></ol> | ||
==See also== | ==See also== | ||
{{Template:Stringlist:RegexReplaceCorresponding footer}} | {{Template:Stringlist:RegexReplaceCorresponding footer}} |
Revision as of 22:46, 14 April 2011
Replace substrings that match regex with items in a Stringlist (Stringlist class)
This method searches a given string for matches to one of multiple regular expressions contained in a list, and it replaces found matches with or according to a string contained in a list that corresponds to the regex list.
The regex list items are treated as mutually exclusive alternatives, and the function stops as soon as an item matches and the replacement is made. A "global" option is also available to continue searching and replacing within the given string using the matching regex item until no more matches are found.
RegexReplaceCorresponding uses the rules of regular expression matching (information about which is provided in "Regex processing rules").
RegexReplaceCorresponding accepts two required and two optional arguments, and it returns a string.
Syntax
%outString = sl:RegexReplaceCorresponding( inString, replacementList, - [Options= string], - [Status= %output]) Throws InvalidRegex
Syntax terms
outString | A string set to the value of inString with each matched substring replaced by the value of the replacementList item that corresponds to the matching sl item. | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sl | A Stringlist object whose items are interpreted as regular expressions and applied to the inString value. | ||||||||||||
inString | The input string, to which the regular expressions in sl are applied. | ||||||||||||
replacementList | A Stringlist, each of whose items is a potential replacement string for the substring of inString that is matched by the corresponding item of sl. Except when the
Any character after the dollar sign other than a zero is an error. Multiple zeroes (as many as 9) are permitted; a digit following such a string of zeroes must be escaped. You can also use the format
The only characters you can escape in a replacement string are dollar sign ( For example, since the scan for the number that accompanies the meta-$ stops at the first nonnumeric, you use | ||||||||||||
Options | This is an optional, but name required, parameter supplying a string of single-letter options, which may be specified in uppercase or lowercase, in any combination, and blank separated or not as you prefer. For more information about these options, see "Common regex options".
| ||||||||||||
Status | The Status argument (name required) is optional; if specified, it is set to an integer code. These values are possible:
|
Usage notes
- All errors in RegexReplaceCorresponding, including invalid argument(s) result in request cancellation.
- It is strongly recommended that you protect your environment from regular expression processing demands on PDL and STBL space by setting, say,
UTABLE LPDLST 3000
andUTABLE LSTBL 9000
. See "User Language programming considerations". - Items in sl must not exceed 6124 bytes. However, the inString value and items in replacementList may exceed 6124 bytes.
- For information about additional methods and $functions that support regular expressions, see "Regex Processing".
- RegexReplaceCorresponding is available as of "Sirius Mods" Version 6.9.
Examples
- In the following code fragment, the second item in regex list
%regList
is the first to match the input stringinStr
. The subexpression in that item performs no special capturing function -- the parentheses are for grouping only. Since%opt='g'
is specified, three replacements are made (using the corresponding, second, item in%repList
):... %regList = new text to %regList abcx a(bc?) abcd end text %repList = new text to %repList &amp;amp;amp; &amp;amp;amp;&amp;amp;amp; &amp;amp;amp;&amp;amp;amp;&amp;amp;amp; end text %inStr = 'abc1abc2abcd' %opt='g' %outStr = %regList:RegexReplaceCorresponding(%inStr, %repList, Options=%opt, Status=%st) Print 'Status from ReplaceCorresponding is ' %st Print 'Output String: ' %outStr ...
The result would be:
Status from ReplaceCorresponding is 3 Output String: &amp;amp;amp;&amp;amp;amp;1&amp;amp;amp;&amp;amp;amp;2&amp;amp;amp;&amp;amp;amp;d