RegexSubset (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (syntax diagram, tags and links)
Line 1: Line 1:
{{Template:Stringlist:RegexSubset subtitle}}
{{Template:Stringlist:RegexSubset subtitle}}
 
<p>This method returns a <var>Stringlist</var> that is a subset of the method <var>Stringlist</var>. The subset contains copies of all the items in the method <var>Stringlist</var> that are matched by a specified regex. Information about the regular expression matching rules observed is provided in [[Regex processing]].</p><p><var>RegexSubset</var> accepts one required and four optional arguments, and it returns a <var>Stringlist</var>.</p>
This method returns a <var>Stringlist</var> that is a subset of the method <var>Stringlist</var>. The subset contains copies of all the items in the method <var>Stringlist</var> that are matched by a specified regex. Information about the regular expression matching rules observed is provided in [[Regex processing]]. The method is available as of Version 6.9 of the <var class=product>Sirius Mods</var>. <var>RegexSubset</var> accepts one required and four optional arguments, and it returns a <var>Stringlist</var>. Specifying an invalid argument results in request cancellation.


==Syntax==
==Syntax==
Line 7: Line 6:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%subset</th>
<tr><th>%subsetList</th>
<td>A <var>Stringlist</var> that contains the '''%sl''' items matched by '''regex'''.</td></tr>
<td>A <var>Stringlist</var> that contains the <var class="term">sl</var> items matched by <var class="term">regex</var>.</td></tr>
<tr><th>%sl</th>
<tr><th>sl</th>
<td>A <var>Stringlist</var> object.</td></tr>
<td>A <var>Stringlist</var> object.</td></tr>
<tr><th>regex</th>
<tr><th>regex</th>
<td>A string that is interpreted as a regular expression and is applied to the '''%sl''' method <var>Stringlist</var> items to determine whether the regex finds a match.</td></tr>
<td>A string that is interpreted as a regular expression and is applied to the <var class="term">sl</var> method <var>Stringlist</var> items to determine whether the <var class="term">regex</var> finds a match.</td></tr>
<tr><th><b>StartCol=</b> num1</th>
<tr><th><b>options</b></th>
<td>The StartCol argument (name required) is an optional number that specifies the starting column of the range of columns in which the matched string must be located. If specified, '''num1''' must be greater than or equal to 1 and less than or equal to the EndCol argument value. If the argument is omitted, its default value is 1. If you specify a '''num1''' value that is greater than the length of a particular '''%sl''' item, '''regex''' is matched against the empty string for that item.</td></tr>
<td>The <var class="term">options</var> argument (name required) is 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]].
<tr><th><b>EndCol=</b> num2</th>
<td>The EndCol argument (name required) is an optional number that specifies the ending column of the range of columns in which the matched string must be located. If specified, '''num2''' must be greater than or equal to 1, greater than or equal to the StartCol argument value, and less than or equal to the lesser of 6124 or the length of '''inStr'''. If the EndCol argument is omitted, its default value is 6124.<blockquote> If the EndCol argument is omitted and a '''%sl''' item exceeds 6124 bytes, the run is cancelled.</blockquote></td></tr>
<tr><th><b>Options=</b> string</th>
<td>The Options argument (name required) is 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 class="syntaxNested">
<table class="syntaxNested">
<tr><th>I</th>
<tr><th>I</th>
<td>Do case-insensitive matching between '''string''' and '''regex'''.</td></tr>
<td>Do case-insensitive matching between <var class="term">sl</var> and <var class="term">regex</var>.</td></tr>
<tr><th>S</th>
<tr><th>S</th>
<td>Dot-All mode: a dot (<tt>..</tt>) can match any character, including carriage return and linefeed.</td></tr>
<td>Dot-All mode: a dot (<code>'.'</code>) can match any character, including carriage return and linefeed.</td></tr>
<tr><th>M</th>
<tr><th>M</th>
<td>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.</td></tr>
<td>Multi-line mode: let anchor characters match end-of-line indicators <b><i>wherever</i></b> the indicator appears in the input string. <code>'M'</code> mode is ignored if <code>'C'</code> (XML Schema) mode is specified.</td></tr>
<tr><th>C</th>
<tr><th>C</th>
<td>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, see [[Regex processing]].</td></tr>
<td>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, see [[Regex processing]].</td></tr>
</table>
</table>
</td></tr>
</td></tr>
<tr><th><b>Status=</b> num</th>
<tr><th><b>status</b></th>
<td>The Status argument (name required) is optional; if specified, it is set to an integer code. These values are possible:
<td>The <var class="term">status</var> argument (name required) is optional; if specified, it is set to an integer code. These values are possible:
<table class="syntaxNested">
<table class="syntaxNested">
<tr><th>&thinsp.<i>n</i></th>
<tr><th><i>n</i></th>
<td>The number of '''%sl''' items that are matched.</td></tr>
<td>The number of <var class="term">sl</var> items that are matched.</td></tr>
<tr><th>&thinsp.0</th>
<tr><th>0</th>
<td>No match: no items in :hp1.%sl:ehp1. were matched by '''regex'''.</td></tr>
<td>No match: no items in <var class="term">sl</var> were matched by <var class="term">regex</var>.</td></tr>
<tr><th>-2</th>
<tr><th>-2</th>
<td>Invalid StartCol or EndCol argument value.</td></tr>
<td>Invalid <var class="term">startCol</var> or <var class="term">endCol</var> argument value.</td></tr>
<tr><th>-1<i>nnn</i></th>
<tr><th>-1<i>nnn</i></th>
<td>The pattern in '''regex''' 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 Status value of <tt>.-1</tt>.</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. Prior to <var class="product">Sirius Mods</var> Version 7.0, an invalid <var class="term">regex</var> results in a <var class="term">Status</var> value of <code>-1</code>.</td></tr>
</table>
</table>
<p class="code"><blockquote> If you omit this argument and a negative Status value is to be returned, the run is cancelled.</blockquote></td></tr>
If you omit this argument and a negative Status value is to be returned, the run is cancelled.</td></tr>
</p>
<tr><th><b>startCol</b></th>
<td>The <var class="term">startCol</var> argument (name required) is an optional <var class="term">number</var> that specifies the starting column of the range of columns in which the matched string must be located. If specified, <var class="term">number</var> must be greater than or equal to 1 and less than or equal to the <var class="term">endCol</var> argument value. If the argument is omitted, its default value is 1. If you specify a <var class="term">number</var> value that is greater than the length of a particular <var class="term">sl</var> item, the <var class="term">regex</var> is matched against the empty string for that item.</td>
<tr><th><b>endCol</b></th>
<td>The <var class="term">endCol</var> argument (name required) is an optional <var class="term">number</var> that specifies the ending column of the range of columns in which the matched string must be located. If specified, <var class="term">number</var> must be greater than or equal to 1, and greater than or equal to the <var class="term">startCol</var> argument value, and less than or equal to the lesser of 6124 or the length of <var class="term">sl</var> item. If the <var class="term">endCol</var> argument is omitted, its default value is 6124.<p>If the <var class="term">endCol</var> argument is omitted and a <var class="term">sl</var> item exceeds 6124 bytes, the request is cancelled.</p></td>
</table>
</table>


==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, <tt>.UTABLE LPDLST 3000</tt> and <tt>.UTABLE LSTBL 9000</tt>. For further discussion of this, see [[User Language coding considerations]].<li>The regex matching is limited to the first 6124 bytes of each item, but a matched item is copied in its entirety to the output subset.<li>Prior to copying matched items to '''%subset''', any preexisting contents of that <var>Stringlist</var> are deleted.<li>For information about additional methods and $functions that support regular expressions, see [[Regex processing]].</ul>
<ul><li>All errors in <var class="term">RegexSubset</var>, including invalid argument(s) result in request cancellation.<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, see [[User Language coding considerations]].
<li>The regex matching is limited to the first 6124 bytes of each item, but a matched item is copied in its entirety to the output subset.<li>Prior to copying matched items to <var class="term">%subsetList</var>, any preexisting contents of that <var>Stringlist</var> are deleted.
<li>For information about additional methods and $functions that support regular expressions, see [[Regex processing]].
<li><var class="term">RegexSubset</var> is available as of <var class="product">Sirius Mods</var> Version 6.9.</ul>
 
==Examples==
==Examples==
In the following code fragment, <var>RegexSubset</var> is applied to the method <var>Stringlist</var> <tt>.%sl</tt> to find the <tt>.%sl</tt> items that are matched by the regex <tt>.%\([a-z]*\)</tt>. The regex is designed to find items that contain shared methods whose class names contain only upper and lowercase letters.
<ol><li>In the following code fragment, <var>RegexSubset</var> is applied to the method <var>Stringlist</var> <code>%sl</code> to find the <code>%sl</code> items that are matched by the regex <code>%\([a-z]*\)</code>. The regex is designed to find items that contain shared methods whose class names contain only upper and lowercase letters.


<p class="code">...
<p class="code"> ...
%sl = new
%sl = new
text to %sl
text to %sl
b
  b
%doc is object xmlDoc
      %doc is object xmlDoc
%(daemon):getInput<var>Object</var>(%doc)
      %(daemon):getInput<var>Object</var>(%doc)
%doc:selectSingleNode('/outer/inner'):addAttribute('foo','bar')
      %doc:selectSingleNode('/outer/inner'):addAttribute('foo','bar')
%(daemon):return<var>Object</var>(%doc)
      %(daemon):return<var>Object</var>(%doc)
end
  end
end text
end text


%regex = '%\([a-z]*\)'
%regex = '%\([a-z]*\)'
%opt='i'
%opt='i'
%sl2 = %sl:<var>RegexSubset</var> (%regex, Options=%opt, Status=%st)
%sl2 = %sl:RegexSubset (%regex, Options=%opt, Status=%st)


If (%st EQ 0) then
If (%st EQ 0) then
Print 'Status from <var>RegexSubset</var> is ' %st
  Print 'Status from <var>RegexSubset</var> is ' %st
Else
Else
Print %regex ' matches the following items:'
  Print %regex ' matches the following items:'
End If
End If
For %i from 1 to %sl2:Count
For %i from 1 to %sl2:Count
Print 'Matching item ' %i ' is: ' %sl2:Item(%i)
  Print 'Matching item ' %i ' is: ' %sl2:Item(%i)
End For
End For
...
  ...
</p>
</p>


Line 80: Line 82:


<p class="code">%\([a-z]*\) matches the following items:
<p class="code">%\([a-z]*\) matches the following items:
Matching item 1 is: %(daemon):getInput<var>Object</var>(%doc)
Matching item 1 is: %(daemon):getInputObject(%doc)
Matching item 2 is: %(daemon):return<var>Object</var>(%doc)
Matching item 2 is: %(daemon):returnObject(%doc)
</p>
</p></ol>
 


==See also==
==See also==
{{Template:Stringlist:RegexSubset footer}}
{{Template:Stringlist:RegexSubset footer}}

Revision as of 02:17, 28 January 2011

Create subset of Stringlist that matches a regex (Stringlist class)

This method returns a Stringlist that is a subset of the method Stringlist. The subset contains copies of all the items in the method Stringlist that are matched by a specified regex. Information about the regular expression matching rules observed is provided in Regex processing.

RegexSubset accepts one required and four optional arguments, and it returns a Stringlist.

Syntax

%subsetList = sl:RegexSubset( regex, [Options= string], [Status= %output], - [StartCol= number], [EndCol= number]) Throws InvalidRegex

Syntax terms

%subsetList A Stringlist that contains the sl items matched by regex.
sl A Stringlist object.
regex A string that is interpreted as a regular expression and is applied to the sl method Stringlist items to determine whether the regex finds a match.
options The options argument (name required) is 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 sl 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, see Regex processing.
status The status argument (name required) is optional; if specified, it is set to an integer code. These values are possible:
n The number of sl items that are matched.
0 No match: no items in sl were matched by regex.
-2 Invalid startCol or endCol argument value.
-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. Prior to Sirius Mods Version 7.0, an invalid regex results in a Status value of -1.
If you omit this argument and a negative Status value is to be returned, the run is cancelled.
startCol The startCol argument (name required) is an optional number that specifies the starting column of the range of columns in which the matched string must be located. If specified, number must be greater than or equal to 1 and less than or equal to the endCol argument value. If the argument is omitted, its default value is 1. If you specify a number value that is greater than the length of a particular sl item, the regex is matched against the empty string for that item.
endCol The endCol argument (name required) is an optional number that specifies the ending column of the range of columns in which the matched string must be located. If specified, number must be greater than or equal to 1, and greater than or equal to the startCol argument value, and less than or equal to the lesser of 6124 or the length of sl item. If the endCol argument is omitted, its default value is 6124.

If the endCol argument is omitted and a sl item exceeds 6124 bytes, the request is cancelled.

Usage notes

  • All errors in RegexSubset, including invalid argument(s) result in request cancellation.
  • 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, see User Language coding considerations.
  • The regex matching is limited to the first 6124 bytes of each item, but a matched item is copied in its entirety to the output subset.
  • Prior to copying matched items to %subsetList, any preexisting contents of that Stringlist are deleted.
  • For information about additional methods and $functions that support regular expressions, see Regex processing.
  • RegexSubset is available as of Sirius Mods Version 6.9.

Examples

  1. In the following code fragment, RegexSubset is applied to the method Stringlist %sl to find the %sl items that are matched by the regex %\([a-z]*\). The regex is designed to find items that contain shared methods whose class names contain only upper and lowercase letters.

    ... %sl = new text to %sl b %doc is object xmlDoc  %(daemon):getInputObject(%doc) %doc:selectSingleNode('/outer/inner'):addAttribute('foo','bar')  %(daemon):returnObject(%doc) end end text %regex = '%\([a-z]*\)' %opt='i' %sl2 = %sl:RegexSubset (%regex, Options=%opt, Status=%st) If (%st EQ 0) then Print 'Status from RegexSubset is ' %st Else Print %regex ' matches the following items:' End If For %i from 1 to %sl2:Count Print 'Matching item ' %i ' is: ' %sl2:Item(%i) End For ...

    This code would print the following:

    %\([a-z]*\) matches the following items: Matching item 1 is: %(daemon):getInputObject(%doc) Matching item 2 is: %(daemon):returnObject(%doc)

See also