RegexReplace (String function): Difference between revisions
m (Apply Dave's comments) |
m (apply Dave's suggestions, fix printtext) |
||
Line 4: | Line 4: | ||
The function stops after the first match and replace, or it can continue searching and replacing until no more matches are found. | 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 | Matches are obtained according to the [[Regex_processing#Regex_rules|rules]] of regular expression matching. | ||
==Syntax== | ==Syntax== | ||
Line 56: | Line 56: | ||
<li>A regex may "succeed" but match no characters. For example, a quantifier like '<code>?</code>' 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 <var class="string">regex</var> is then applied again one position to the right in the input string, and again, until the end of the string. The regex '<code>9?</code>' globally applied to the string '<code>abc</code>' with a comma-comma ('<code>,,</code>') 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 '<code>?</code>' 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 <var class="string">regex</var> is then applied again one position to the right in the input string, and again, until the end of the string. The regex '<code>9?</code>' globally applied to the string '<code>abc</code>' with a comma-comma ('<code>,,</code>') replacement string results in this output string: '<code>,,a,,b,,c,,</code>'. | ||
<li>For information about additional methods that support regular expressions, see <var>[[Regex_processing|"Regex Processing"]]</var>. | <li>For information about additional methods that support regular expressions, see <var>[[Regex_processing|"Regex Processing"]]</var>. | ||
<li><var>RegexReplace</var> is available as of <var class="product">Sirius Mods</var> Version 7.2.</ul> | <li><var>RegexReplace</var> is available as of <var class="product">[[Sirius Mods|"Sirius Mods"]]</var> Version 7.2.</ul> | ||
==Examples== | ==Examples== | ||
Line 72: | Line 72: | ||
%opt='g' | %opt='g' | ||
%outStr = %inStr:Regexreplace(%regex, %replacement, options=%opt) | %outStr = %inStr:Regexreplace(%regex, %replacement, options=%opt) | ||
printText OutputString: '{%outStr}' | [[PrintText statement|printText]] OutputString: '{%outStr}' | ||
end | end | ||
</p> | </p> | ||
Line 91: | Line 91: | ||
==See also== | ==See also== | ||
{{Template:String:RegexReplace footer}} | {{Template:String:RegexReplace footer}} |
Revision as of 07:48, 23 February 2011
Replace regex match(es) (String class)
The RegexReplace intrinsic function searches a given string for matches of a regular expression, and replaces 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.
Syntax
%outString = string:RegexReplace( regex, replacement, [Options= string]) Throws InvalidRegex
Syntax terms
%outString | A string set to the value of method object string with each matched substring replaced by the value of replacement. | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
regex | A string that is interpreted as a regular expression and that is applied to the method object string to find the one or more string substrings matched by regex. | ||||||||||||
replacement | The string that replaces the substrings of string that regex matches. 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 (literal) value of $n is used in the replacement string instead of the empty string. '
The only characters you can escape in a replacement string are dollar sign (' An invalid replacement string results in request cancellation. | ||||||||||||
Options | This is an optional, but nameRequired, 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".
|
Exceptions
RegexReplace can throw the following exceptions:
- InvalidRegex
- If the regex parameter does not contain a valid regular expression. The exception object indicates the position of the character in the regex parameter where it was determined that the regular expression is invalid, and a description of the nature of the error.
Usage notes
- 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". - Within a regular expression, 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 Options 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,,
'. - For information about additional methods that support regular expressions, see "Regex Processing".
- RegexReplace is available as of "Sirius Mods" Version 7.2.
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 %inStr='5A5B5C5D5E' %regex='(5.)' %replacement='$L1' %opt='g' %outStr = %inStr:Regexreplace(%regex, %replacement, options=%opt) printText OutputString: '{%outStr}' end
The example result is:
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. - 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>