$Lstr ParseX: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 2: Line 2:
<span class="pageSubtitle"><section begin="desc" />Part of longstring following character in delimiter set<section end="desc" /></span>
<span class="pageSubtitle"><section begin="desc" />Part of longstring following character in delimiter set<section end="desc" /></span>


<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_ParseX function is [[to be entered]].</p>
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_ParseX function is in the [[StringTokenizer class]].</p>


This function returns the part(s) of a longstring that remain after removing the part of the string that is delimited by a character in a delimiter set.  
This function returns the part(s) of a longstring that remain after removing the part of the string that is delimited by a character in a delimiter set.  
Line 29: Line 29:
</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 [[$Lstr_Parse]] would return for this same initial string.  
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 $Lstr_Parse (:hdref refid=lstrpar.) would return for this same initial string.  


$Lstr_ParseX returns a null string if none of the delimiter characters are found.<p>
$Lstr_ParseX returns a null string if none of the delimiter characters are found.<p>

Revision as of 22:45, 10 February 2011

<section begin="desc" />Part of longstring following character in delimiter set<section end="desc" />

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_ParseX function is in the StringTokenizer class.

This function returns the part(s) of a longstring that remain after removing the part of the string that is delimited by a character in a delimiter set.

The $Lstr_ParseX function accepts three arguments and returns a longstring result that is a part of the first input long string.

The first argument is an arbitrary string or longstring.

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

<section begin="syntax" /> %PIECE = $Lstr_ParseX(string, delims, start_pos) <section end="syntax" />

$Lstr_ParseX Function

%PIECE is a piece of the first argument string.

For example, the following statement would set %JUNK to WANT|NOT:

%JUNK = $Lstr_ParseX('WASTE NOT(WANT|NOT', '(|')

The statement below would set %JUNK to NOT:

%JUNK = $Lstr_ParseX('WASTE NOT(WANT|NOT', '|')

The following statement would set %JUNK to WASTENOT:

%JUNK = $Lstr_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 $Lstr_Parse would return for this same initial string.

$Lstr_ParseX returns a null string if none of the delimiter characters are found.

Products authorizing $Lstr_ParseX