$ParseX: Difference between revisions
m (→Syntax) |
mNo edit summary |
||
Line 20: | Line 20: | ||
<p> | <p> | ||
<var class="term">%piece</var> is a piece of the first argument string.</p> | <var class="term">%piece</var> is a piece of the first argument string.</p> | ||
<var>$ParseX</var> returns a null string if none of the delimiter characters are found, unless the second argument is the null string (the default), in which case $ParseX returns the entire first argument string. | |||
==Examples== | ==Examples== | ||
Line 28: | Line 30: | ||
<p class="code"> %JUNK = $ParseX('WASTE NOT(WANT|NOT', '|') | <p class="code"> %JUNK = $ParseX('WASTE NOT(WANT|NOT', '|') | ||
</p> | </p> | ||
The following statement would set % | The following statement would set <code>%junk</code> to <code>WASTENOT</code>: | ||
<p class="code"> % | <p class="code">%junk = $ParseX('WASTE NOT(WANT|NOT', '|', 6) | ||
</p> | </p> | ||
Note that this last result string is a concatenation of the characters that precede the starting position character in the initial string and the characters that follow the delimiter character. Also note that the characters that are '''not''' in this result string are exactly the characters that [[$Parse]] would return for this same initial | Note that this last result string is a concatenation of the characters that precede the starting position character in the initial string and the characters that follow the delimiter character. Also note that the characters that are '''not''' in this result string are exactly the characters that <var>[[$Parse]]</var> would return for this same initial string. | ||
==Products authorizing {{PAGENAMEE}}== | ==Products authorizing {{PAGENAMEE}}== |
Revision as of 14:33, 19 July 2013
Part of string following character in delimiter set
Note: Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is no direct OO equivalent for the $ParseX function, but you might find a more powerful solution in the StringTokenizer class or elements of the Sirius Regex implementation, such as RegexSplit.
This function returns the part(s) of a string that remain after removing the part of the string that is delimited by a character in a delimiter set.
The $ParseX function accepts three arguments and returns a string result that is a part of the first input string.
The first argument is an arbitrary string.
The second argument is a string containing a set of delimiter characters.
The third argument is a starting position in the first argument string and has a default of 1.
Syntax
%piece = $ParseX(string, delims, [start_pos])
%piece is a piece of the first argument string.
$ParseX returns a null string if none of the delimiter characters are found, unless the second argument is the null string (the default), in which case $ParseX returns the entire first argument string.
Examples
The following statement would set %JUNK to WANT|NOT:
%JUNK = $ParseX('WASTE NOT(WANT|NOT', '(|')
The statement below would set %JUNK to NOT:
%JUNK = $ParseX('WASTE NOT(WANT|NOT', '|')
The following statement would set %junk
to WASTENOT
:
%junk = $ParseX('WASTE NOT(WANT|NOT', '|', 6)
Note that this last result string is a concatenation of the characters that precede the starting position character in the initial string and the characters that follow the delimiter character. Also note that the characters that are not in this result string are exactly the characters that $Parse would return for this same initial string.