$Lstr Parse: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
(Automatically generated page update)
 
(39 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:$Lstr_Parse}}
{{DISPLAYTITLE:$Lstr_Parse}}
<span class="pageSubtitle"><section begin="desc" />Part of longstring preceding character in delimiter set<section end="desc" /></span>
<span class="pageSubtitle">Part of longstring preceding character in delimiter set</span>


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


This function returns part of a given string: the characters after a specified or implied starting position and until a character in a delimiter set.  
This function returns part of a given string: the characters after a specified or implied starting position and until a character in a delimiter set.  


The $Lstr_Parse function accepts three arguments and returns a string result that is a part of the first input string.  
The <var>$Lstr_Parse</var> 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 or longstring.  
The first argument is an arbitrary string or longstring.  
Line 15: Line 15:


==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %PIECE = $Lstr_Parse(string, delims, start_pos)
<p class="syntax"><span class="term">%PIECE</span> = <span class="literal">$Lstr_Parse</span>(<span class="term">string</span>, <span class="term">delims</span>, [<span class="term">start_pos</span>])
<section end="syntax" /></p>
<p class="caption">$Lstr_Parse Function
</p>
</p>
<p class="caption">%PIECE is a piece of the first argument string.</p>
 
<p>%PIECE is a piece of the first argument string.</p>
For example, the following statement would set %JUNK to <tt>WASTE NOT</tt>:
For example, the following statement would set %JUNK to <tt>WASTE NOT</tt>:
<p class="code"> %JUNK = $Lstr_Parse('WASTE NOT(WANT|NOT', '(|')
<p class="code"> %JUNK = $Lstr_Parse('WASTE NOT(WANT|NOT', '(|')
Line 30: Line 29:
</p>
</p>


$Lstr_Parse returns the entire first argument longstring if none of the delimiter characters are found.<p>
<var>$Lstr_Parse</var> returns the entire first argument longstring if none of the delimiter characters are found.<p>


==Products authorizing {{PAGENAMEE}}==
<ul class="smallAndTightList">
<ul class="smallAndTightList">
<li>[[Sirius functions]]</li>
<li>[[List of $functions|Sirius functions]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Janus Open Client]]</li>
<li>[[Media:JoclrNew.pdf|Janus Open Client]]</li>
<li>[[Janus Open Server]]</li>
<li>[[Media:JosrvrNew.pdf|Janus Open Server]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Japanese functions]]</li>
<li>Japanese functions</li>
<li>[[Sir2000 Field Migration Facility]]</li>
<li>[[Media:SirfieldNew.pdf|Sir2000 Field Migration Facility]]</li>


</ul>
</ul>
   
   
</p>
</p>
<p class="caption">Products authorizing $Lstr_Parse
<p>
</p>
</p>




[[Category:$Functions|$Lstr_Parse]]
[[Category:$Functions|$Lstr_Parse]]

Latest revision as of 22:52, 20 September 2018

Part of longstring preceding character in delimiter set

Note: Many $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_Parse function is the Before function; also see the StringTokenizer class.

This function returns part of a given string: the characters after a specified or implied starting position and until a character in a delimiter set.

The $Lstr_Parse 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 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

%PIECE = $Lstr_Parse(string, delims, [start_pos])

%PIECE is a piece of the first argument string.

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

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

The statement below would set %JUNK to WASTE NOT(WANT:

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

The following statement would set %JUNK to E NOT(WANT:

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

$Lstr_Parse returns the entire first argument longstring if none of the delimiter characters are found.

Products authorizing $Lstr_Parse