$RegexReplace: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
m (misc formatting)
Line 2: Line 2:
<span class="pageSubtitle">Replace matching strings</span>
<span class="pageSubtitle">Replace matching strings</span>


<p class="warn"><b>Note: </b>Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $RegexReplace function is the <var>[[RegexReplace (String function)|RegexReplace]]</var> <var>String</var> function.</p>
<p class="warn"><b>Note:</b> Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the <var>$RegexReplace</var> function is the <var>[[RegexReplace (String function)|RegexReplace]]</var> <var>String</var> function. </p>


This function searches a given string for matches of a regular expression, and it replaces found matches with or according to a specified replacement string. The function stops after the first match and replace, or it can continue searching and replacing until no more matches are found. The function is available as of Version 6.9 of the <var class="product">[[Sirius Mods]]</var>.  
This function searches a given string for matches of a regular expression, and it replaces found matches with or according to a specified replacement string. The function stops after the first match and replace, or it can continue searching and replacing until no more matches are found.  


Matches are obtained according to the "rules" of regular expression matching (information about the rules observed is provided in ).  
Matches are obtained according to the "rules" of regular expression matching (information about the rules observed is provided in [[Regex processing#Regex rules|Regex rules]]).  


<var>$RegexReplace</var> accepts three required and two optional arguments, and it returns a string. It is also [[Calling Sirius Mods $functions|callable]]. Specifying an invalid argument results in request cancellation.
<var>$RegexReplace</var> accepts three required and two optional arguments, and it returns a string. It is also [[Calling Sirius Mods $functions|callable]]. Specifying an invalid argument results in request cancellation.
Line 15: Line 15:


===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table>
<tr><th>outStr</th>
<tr><th>outStr</th>
<td>A string set to the value of <var class="term">inStr</var> with each matched substring replaced by the value of <var class="term">replacement</var>.</td></tr>
<td>A string set to the value of <var class="term">inStr</var> with each matched substring replaced by the value of <var class="term">replacement</var>.</td></tr>
Line 27: Line 27:
<td>The string that replaces the substrings of <var class="term">inStr</var> that <var class="term">regex</var> matches. This is a required argument.  
<td>The string that replaces the substrings of <var class="term">inStr</var> that <var class="term">regex</var> matches. This is a required argument.  


Except when the <tt>A</tt> option is specified (as described below for the <var class="term">options</var> argument), you can include markers in the <var class="term">replacement</var> value to indicate where to insert corresponding captured strings &mdash; strings matched by capturing groups (parenthesized subexpressions) in <var class="term">regex</var>, if any.  
Except when the <code>A</code> option is specified (as described below for the <var class="term">options</var> argument), you can include markers in the <var class="term">replacement</var> value to indicate where to insert corresponding captured strings &mdash; strings matched by capturing groups (parenthesized subexpressions) in <var class="term">regex</var>, if any.  


As in Perl, these markers are in the form <code>$n</code>, where <i>n</i> is the number of the capture group, and 1 is the number of the first capture group. <i>n</i> must not be 0 or contain more than 9 digits.  
As in Perl, these markers are in the form <code>$n</code>, where <i>n</i> is the number of the capture group, and 1 is the number of the first capture group. <i>n</i> must not be 0 or contain more than 9 digits.  


If a capturing group makes no matches (is positional, for example), or if there was no <i>n</i>th capture group corresponding to the <tt>$n</tt> marker in a replacement string, the value of <tt>$n</tt> used in the replacement string is the empty string.  
If a capturing group makes no matches (is positional, for example), or if there was no <var class="term">n</var>th capture group corresponding to the <tt>$n</tt> marker in a replacement string, the value of <code>$n</code> used in the replacement string is the empty string.  


<code>xxx$1</code> is an example of a valid replacement string, and <code>$0yyy</code> is an example of a <strong>non-valid</strong> one.  
<code>xxx$1</code> is an example of a valid replacement string, and <code>$0yyy</code> is an example of a <strong>non-valid</strong> one.  
Or you can use the format <code>$mn</code>, where <i>m</i> is one of the following modifiers:
Or you can use the format <code>$mn</code>, where <var class="term">m</var> is one of the following modifiers:
<table class="syntaxTable">
<table>
<tr><th><var>U</var> or <var class="camel">u</var></th>
<tr><th><var>U</var> or <var class="camel">u</var></th>
<td>Specifies that the specified captured string should be uppercased when inserted.</td></tr>
<td>Specifies that the specified captured string should be uppercased when inserted.</td></tr>
Line 49: Line 49:


<tr><th>options</th>
<tr><th>options</th>
<td>An optional string of options. The options are single letters, which may be specified in uppercase or lowercase, in any combination, and separated by blanks or not separated. For more information about these options, see [[Regex processing|"Regex processing"]].
<td>An optional string of options. The options are single letters, which may be specified in uppercase or lowercase, in any combination, and separated by blanks or not separated. For more information about these options, see [[Regex processing]].
<table>
<table>
<tr><th><var>I</var></th>
<tr><th><var>I</var></th>
Line 84: Line 84:


<tr><th><var>-1</var><i>nnn</i></th>
<tr><th><var>-1</var><i>nnn</i></th>
<td>The pattern in <var class="term">regex</var> is invalid. <i>nnn</i>, the absolute value of the return minus 1000, gives the 1-based position of the character being scanned when the error was discovered. The value for an error occurring at end-of-string is the length of the string + 1. Prior to Version 7.0 of the <var class="product">Sirius Mods</var>, an invalid regex results in a <var class="term">%status</var> value of <code>-1</code>.</td></tr>
<td>The pattern in <var class="term">regex</var> is invalid. <i>nnn</i>, the absolute value of the return minus 1000, gives the 1-based position of the character being scanned when the error was discovered. The value for an error occurring at end-of-string is the length of the string + 1. </td></tr>
</table>
</table>


Line 91: Line 91:


==Usage notes==
==Usage notes==
<ul>
<li>It is strongly recommended that you protect your environment from regex processing demands on PDL and STBL space by setting, say, <code>UTABLE LPDLST 3000</code> and <code>UTABLE LSTBL 9000</code>. For further discussion of this,


<ul>
<li>It is strongly recommended that you protect your environment from regex processing demands on PDL and STBL space by setting, say, <tt>UTABLE LPDLST 3000</tt> and <tt>UTABLE LSTBL 9000</tt>. For further discussion of this,
<li>$RegexReplace is Longstring-capable. Its string inputs and outputs are considered Longstrings for expression-compilation purposes, and they have standard Longstring truncation behavior: truncation by assignment results in request cancellation. For more information,  
<li>$RegexReplace is Longstring-capable. Its string inputs and outputs are considered Longstrings for expression-compilation purposes, and they have standard Longstring truncation behavior: truncation by assignment results in request cancellation. For more information,  
<li>Within a regex, characters enclosed by a pair of unescaped parentheses form a "subexpression". A subexpression is a capturing group if the opening parenthesis is <strong>not</strong> followed by a question mark (<tt>?</tt>). A capturing group that is nested within a non-capturing subexpression is still a capturing group.  
<li>Within a regex, characters enclosed by a pair of unescaped parentheses form a "subexpression". A subexpression is a capturing group if the opening parenthesis is <strong>not</strong> followed by a question mark (<tt>?</tt>). A capturing group that is nested within a non-capturing subexpression is still a capturing group.  
<li>In Perl, <tt>$n</tt> markers (<tt>$1</tt>, for example) enclosed in single quotes are treated as literals instead of as "that which was captured by the first capturing parentheses." <var>$RegexReplace</var> uses the <tt>A</tt> option of the Option argument for this purpose.  
<li>In Perl, <tt>$n</tt> markers (<tt>$1</tt>, for example) enclosed in single quotes are treated as literals instead of as "that which was captured by the first capturing parentheses." <var>$RegexReplace</var> uses the <tt>A</tt> option of the Option argument for this purpose.  
<li>A regex may "succeed" but match no characters. For example, a quantifier like <tt>?</tt> is allowed by definition to match no characters, though it tries to match one. <var>$RegexReplace</var> honors such a zero-length match by substituting the specified replacement string at the current position. If the global option is in effect, the regex is then applied again one position to the right in the input string, and again, until the end of the string. The regex <tt>9?</tt> globally applied to the string <tt>abc</tt> with a comma-comma (<tt>,,</tt>) replacement string results in this output string: <code>,,a,,b,,c,,</code>.  
<li>A regex may "succeed" but match no characters. For example, a quantifier like <tt>?</tt> is allowed by definition to match no characters, though it tries to match one. <var>$RegexReplace</var> honors such a zero-length match by substituting the specified replacement string at the current position. If the global option is in effect, the regex is then applied again one position to the right in the input string, and again, until the end of the string. The regex <tt>9?</tt> globally applied to the string <tt>abc</tt> with a comma-comma (<tt>,,</tt>) replacement string results in this output string: <code>,,a,,b,,c,,</code>.  
<li>Say you want to supply end tags to items of of the form <tt><img foo="bar"></tt>, converting them to <tt><img foo="bar"></img></tt>. You decide to use the following regex to capture <tt>img</tt> tags that have attributes:
 
<li>Say you want to supply end tags to items of of the form <code><img foo="bar"></code>, converting them to <code><img foo="bar"></img></code>. You decide to use the following regex to capture <code>img</code> tags that have attributes:
<p class="code">(<img .*>)
<p class="code">(<img .*>)
</p>
</p>
 
<p>
And you use the following replacement string to replace the captured string with the captured string plus an appended <code></img></code>:
And you use the following replacement string to replace the captured string with the captured string plus an appended <code></img></code>:
 
</p>
<p class="code">$1</img>
<p class="code">$1</img>
</p>
</p>
 
<p>
However, if the regex above is applied to the string  
However, if the regex above is applied to the string  
<tt><body><img src="foo" width="24"></body></tt>, the end tag <tt></img></tt> is not inserted after the first closing angle bracket (<tt>></tt>) after <tt>"24"</tt> as you want. Instead, the matched string greedily extends to the second closing angle bracket, and the tag <tt></img></tt> is positioned at the end:
<code><body><img src="foo" width="24"></body></code>, the end tag <code></img></code> is not inserted after the first closing angle bracket (<code>></code>) after <code>"24"</code> as you want. Instead, the matched string greedily extends to the second closing angle bracket, and the tag <code></img></code> is positioned at the end:  
 
</p>
<p class="code"><body><img src="foo" width="24"></body></img>
<p class="code"><body><img src="foo" width="24"></body></img>
</p>
</p>
 
<p>
One remedy for this situation is to use the following regex, which employs a negated character class to match non-closing-bracket characters:
One remedy for this situation is to use the following regex, which employs a negated character class to match non-closing-bracket characters: </p>
<p class="code">(<img [&circ;>]*>)
<p class="code">(<img [&circ;>]*>)
</p>
</p>
 
<p>
This regex does not extend beyond the first closing angle bracket in the target input string, and the resulting output string is:
This regex does not extend beyond the first closing angle bracket in the target input string, and the resulting output string is: </p>
<p class="code"><body><img src="foo" width="24"></img></body>
<p class="code"><body><img src="foo" width="24"></img></body>
</p>
</p></li>
 
<li>For information about additional methods and $functions that support regular expressions, see [[Regex processing|"Regex processing"]].
 


<li>This $function is available as of Version 6.9.
<li>For information about additional methods and $functions that support regular expressions, see [[Regex processing]]. </li>
</ul>
</ul>


==Examples==
==Examples==
In the following example, the regex <code>(5.)</code> is applied repeatedly (global option) to the string <code>5A5B5C5D5E</code> to replace the uppercase letters with their lowercase counterparts. The <tt>$L1</tt> <strong>%replacement</strong> value makes the replacement string equal to whatever is matched by the capturing group, <tt>(5.)</tt>, in the regex (the <tt>L</tt> causes the lowercase versions of the captured letters to be used).
In the following example, the regex <code>(5.)</code> is applied repeatedly (global option) to the string <code>5A5B5C5D5E</code> to replace the uppercase letters with their lowercase counterparts. The <code>$L1</code> <code>%replacement</code> value makes the replacement string equal to whatever is matched by the capturing group, <code>(5.)</code>, in the regex (the <code>L</code> causes the lowercase versions of the captured letters to be used).


<p class="code"> Begin
<p class="code">Begin
%regex Longstring
%regex Longstring
%inStr Longstring
%inStr Longstring
%replacement Longstring
%replacement Longstring
%outStr Longstring
%outStr Longstring
%opt string len 10
%opt string len 10
%status float
%status float
   
   
%inStr='5A5B5C5D5E'
%inStr='5A5B5C5D5E'
%regex='(5.)'
%regex='(5.)'
%replacement='$L1'
%replacement='$L1'
%opt='g'
%opt='g'
%outStr = $RegexReplace (%inStr, %regex, %replacement, -
%outStr = $RegexReplace (%inStr, %regex, %replacement, -
%opt, %status)
%opt, %status)
Print '%RegexReplace: status = ' %status
Print '%RegexReplace: status = ' %status
Print 'OutputString: ' %outStr
Print 'OutputString: ' %outStr
End
End
</p>
</p>


The example result is:
The example result is:
<p class="code"> %RegexReplace: status = 5
<p class="output">%RegexReplace: status = 5
OutputString: 5a5b5c5d5e
OutputString: 5a5b5c5d5e
</p>
</p>


The non-capturing regex <tt>5.</tt> matches and replaces the same substrings as the capturing group <tt>(5.)</tt>, but <tt>(5.)</tt> is used above to take advantage of the self-referring marker for the replacement string, <tt>$L1</tt>, which is valid only for capturing groups.  
The non-capturing regex <code>5.</code> matches and replaces the same substrings as the capturing group <code>(5.)</code>, but <code>(5.)</code> is used above to take advantage of the self-referring marker for the replacement string, <code>$L1</code>, which is valid only for capturing groups.  


==Products authorizing {{PAGENAMEE}}==  
==Products authorizing {{PAGENAMEE}}==  
<ul class="smallAndTightList">
<ul class="smallAndTightList">
<li>[[List of $functions|Sirius functions]]
<li>[[Sirius Functions]] </li>
</ul>
</ul>
<p>
</p>


[[Category:$Functions|$RegexReplace]]
[[Category:$Functions|$RegexReplace]]

Revision as of 20:08, 7 August 2018

Replace matching strings

Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $RegexReplace function is the RegexReplace String function.

This function searches a given string for matches of a regular expression, and it replaces found matches with or according to a specified replacement string. The function stops after the first match and replace, or it can continue searching and replacing until no more matches are found.

Matches are obtained according to the "rules" of regular expression matching (information about the rules observed is provided in Regex rules).

$RegexReplace accepts three required and two optional arguments, and it returns a string. It is also callable. Specifying an invalid argument results in request cancellation.

Syntax

outStr = $RegexReplace(inStr, regex, replacement, [options], [%status])

Syntax terms

outStr A string set to the value of inStr with each matched substring replaced by the value of replacement.
inStr the input string, to which the regular expression regex is applied. This is a required argument.
regex a string that is interpreted as a regular expression and that is applied to the inStr argument to find the one or more inStr substrings matched by regex. This is a required argument.
replacement The string that replaces the substrings of inStr that regex matches. This is a required argument.

Except when the A option is specified (as described below for the options argument), you can include markers in the replacement value to indicate where to insert corresponding captured strings — strings matched by capturing groups (parenthesized subexpressions) in regex, if any.

As in Perl, these markers are in the form $n, where n is the number of the capture group, and 1 is the number of the first capture group. n must not be 0 or contain more than 9 digits.

If a capturing group makes no matches (is positional, for example), or if there was no nth capture group corresponding to the $n marker in a replacement string, the value of $n used in the replacement string is the empty string.

xxx$1 is an example of a valid replacement string, and $0yyy is an example of a non-valid one. Or you can use the format $mn, where m is one of the following modifiers:

U or u Specifies that the specified captured string should be uppercased when inserted.
L or l Indicates that the captured string should be lowercased when inserted.

The only characters you can escape in a replacement string are dollar sign ($), backslash (\), and the digits 0 through 9. So only these escapes are respected: .\\, \$, and \0 through \9. No other escapes are allowed in a replacement string — this includes "shorthand" escapes like \d — and an "unaccompanied" backslash (\) is an error.

For example, since the scan for the number that accompanies the meta-$ stops at the first non-numeric, you use 1$1\2 to indicate that the first captured string should go between the numbers 1 and 2 in the replacement string.
options An optional string of options. The options are single letters, which may be specified in uppercase or lowercase, in any combination, and separated by blanks or not separated. For more information about these options, see Regex processing.
I Do case-insensitive matching between inStr and regex.
S Dot-All mode: a dot (.) can match any character, including carriage return and linefeed.
M Multi-line mode: let anchor characters match end-of-line indicators wherever the indicator appears in the input string. M mode is ignored if C (XML Schema) mode is specified.
C Do the match according to XML Schema regex rules. Each regex is implicitly anchored at the beginning and end, and no characters serve as anchors. For more information,
G Replace every occurrence of the match, not just (as in non-G mode) the first matched substring only.
A Copy the replacement string as is. Do not recognize escapes; interpret a $n combination as a literal and not as a special marker; and so on.
%status An optional, integer status code. These values are possible:
n The number of replacements made.
0 No match: inStr was not matched by regex.
-5 An invalid replacement string. For example, an invalid escape sequence, or a $ followed by a non-number, by a 0 or by no digits, or by more than 9 digits.
-1nnn The pattern in regex is invalid. nnn, the absolute value of the return minus 1000, gives the 1-based position of the character being scanned when the error was discovered. The value for an error occurring at end-of-string is the length of the string + 1.

Note: If you omit this argument and a negative %status value is to be returned, the run is cancelled.

Usage notes

  • It is strongly recommended that you protect your environment from regex processing demands on PDL and STBL space by setting, say, UTABLE LPDLST 3000 and UTABLE LSTBL 9000. For further discussion of this,
  • $RegexReplace is Longstring-capable. Its string inputs and outputs are considered Longstrings for expression-compilation purposes, and they have standard Longstring truncation behavior: truncation by assignment results in request cancellation. For more information,
  • Within a regex, characters enclosed by a pair of unescaped parentheses form a "subexpression". A subexpression is a capturing group if the opening parenthesis is not followed by a question mark (?). A capturing group that is nested within a non-capturing subexpression is still a capturing group.
  • In Perl, $n markers ($1, for example) enclosed in single quotes are treated as literals instead of as "that which was captured by the first capturing parentheses." $RegexReplace uses the A option of the Option argument for this purpose.
  • A regex may "succeed" but match no characters. For example, a quantifier like ? is allowed by definition to match no characters, though it tries to match one. $RegexReplace honors such a zero-length match by substituting the specified replacement string at the current position. If the global option is in effect, the regex is then applied again one position to the right in the input string, and again, until the end of the string. The regex 9? globally applied to the string abc with a comma-comma (,,) replacement string results in this output string: ,,a,,b,,c,,.
  • Say you want to supply end tags to items of of the form <img foo="bar">, converting them to <img foo="bar"></img>. You decide to use the following regex to capture img tags that have attributes:

    (<img .*>)

    And you use the following replacement string to replace the captured string with the captured string plus an appended </img>:

    $1</img>

    However, if the regex above is applied to the string <body><img src="foo" width="24"></body>, the end tag </img> is not inserted after the first closing angle bracket (>) after "24" as you want. Instead, the matched string greedily extends to the second closing angle bracket, and the tag </img> is positioned at the end:

    <body><img src="foo" width="24"></body></img>

    One remedy for this situation is to use the following regex, which employs a negated character class to match non-closing-bracket characters:

    (<img [ˆ>]*>)

    This regex does not extend beyond the first closing angle bracket in the target input string, and the resulting output string is:

    <body><img src="foo" width="24"></img></body>

  • For information about additional methods and $functions that support regular expressions, see Regex processing.

Examples

In the following example, the regex (5.) is applied repeatedly (global option) to the string 5A5B5C5D5E to replace the uppercase letters with their lowercase counterparts. The $L1 %replacement value makes the replacement string equal to whatever is matched by the capturing group, (5.), in the regex (the L causes the lowercase versions of the captured letters to be used).

Begin %regex Longstring %inStr Longstring %replacement Longstring %outStr Longstring %opt string len 10 %status float %inStr='5A5B5C5D5E' %regex='(5.)' %replacement='$L1' %opt='g' %outStr = $RegexReplace (%inStr, %regex, %replacement, - %opt, %status) Print '%RegexReplace: status = ' %status Print 'OutputString: ' %outStr End

The example result is:

%RegexReplace: status = 5 OutputString: 5a5b5c5d5e

The non-capturing regex 5. matches and replaces the same substrings as the capturing group (5.), but (5.) is used above to take advantage of the self-referring marker for the replacement string, $L1, which is valid only for capturing groups.

Products authorizing $RegexReplace