UnicodeAfter (Unicode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
m (→‎Examples: drop second example)
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:Unicode:UnicodeAfter subtitle}}
{{Template:Unicode:UnicodeAfter subtitle}}


<var>UnicodeAfter</var> operates on a Unicode variable or string and returns the portion of that string after a user-specified delimiter.  To get the portion of the string before a delimiter, use the <var>[[UnicodeBefore (String function)|UnicodeBefore]]</var> string method.
<var>UnicodeAfter</var> operates on a Unicode variable or string and returns the portion of that string after a user-specified delimiter.  To get the portion of the string before a delimiter, use the <var>[[UnicodeBefore (Unicode function)|UnicodeBefore]]</var> method.


==Syntax==
==Syntax==
{{Template:String:UnicodeAfter syntax}}
{{Template:Unicode:UnicodeAfter syntax}}
 
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table>
<tr><th>%outString</th>
<tr><th>%outUnicode</th>
<td>A unicode variable to hold the output of the parsed input unicode string.</td></tr>
<td>A <var>Unicode</var> variable to hold the output of the parsed input string, <var class="term">unicode</var>.</td></tr>
<tr><th>string</th>
 
<td>A unicode string that holds the string to be parsed.</td></tr>
<tr><th>unicode</th>
<td>A <var>Unicode</var> string that holds the string to be parsed.</td></tr>
 
<tr><th>substring</th>
<tr><th>substring</th>
<td>A unicode string that holds the separator character or characters on which parsing occurs.</td></tr>
<td>A <var>Unicode</var> string that holds the separator character or characters on which parsing occurs.</td></tr>
 
<tr><th><var>Start</var></th>
<tr><th><var>Start</var></th>
<td>number: The starting point for parsing. The default value is 1, indicating the beginning of the string.  This is a name-optional argument and cannot be 0. If a value larger than the string is specified, the method always returns a null string.</td></tr>
<td>This numeric value is the starting point for parsing. The default value is 1, indicating the beginning of the string.   
<p>
This is a [[Notation conventions for methods#Named arguments|name required]] argument, and it cannot be 0. If a value larger than the string length is specified, the method returns a null string. </p></td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
If a starting value is entered, the %outString is the content of the string beginning after the first occurrence of the delimiter string encountered after the specified start point, and ending at the end of the string.
<ul>
The delimiter string is not a list of individual delimiters, but a single delimiter which may be multiple characters. In other words, if your delimiter is 'ok', the method looks for occurrences of those two lower-case letters and returns a value after said occurrence,
<li>If a starting value is entered, the <var class="term">%outUnicode</var> value is the content of the string that begins after the first occurrence of the delimiter substring encountered after the specified start point, and that ends at the end of the string.
This method is always case-sensitive.
<p>
The delimiter string is not a list of individual delimiters; it is a single delimiter which may be multiple characters. If your delimiter is "ok", the method looks for occurrences of those two lowercase letters, and it returns a value that starts after the first occurrence found after the starting point. </p></li>
<li>This method is always case-sensitive. </li>
</ul>
 
==Examples==
==Examples==
 
In the following request, the given initial string is "Manos: The Hands of Fate [is a D-minus] of a B movie". The substring that follows the left square bracket (<tt>[</tt>) character representation is excerpted by <var>UnicodeAfter</var>. The request uses an [[Release notes for Model 204 version 7.6#New XHTML entities for square-bracket characters|enhancement for square-bracket handling]] introduced in version 7.6 of Model&nbsp;204.
The following request the left and right square brackets are created using the unicode method and placed in variables %sqL and %sqR. Depending on your browser's codepage, the square brackets may or may not render correctly.  They are then inserted into a unicode string and used to parse that string:
<p class="code">begin    
<p><code> I am the Walrus!  Koo Koo Kachoo!</code></p>  
%x is unicode
<p class="code">begin
%x = 'Manos: The Hands of Fate <b>&lsqb;</b>is a D-minus<b>&rsqb;</b> '<b>:U</b> 'of a B movie'
  %x is string len 64 initial('I am the Eggman!  I am the Walrus!  Koo Koo Kachoo!')
printText {%x:unicodeAfter('&lsqb;'<b>:U</b>)}
  printText {%x:after('!')}
end
end
</p>
</p>
begin                                                                           
<p>
%sqL                is string len 1 initial("&#x5B;":u) static                 
The result is:</p>
%sqR                is string len 1 initial("&#x5D;":u) static                 
<p class="output">is a D-minus] of a B movie</p>
%x is unicode                                                                   
%x = 'Released in 1966, Manos: The Hands of Fate ' with %sql with -             
    ' is a D-minus ' with %sqr with -                                         
    ' of a B movie: Its plot, about desert-dwelling pagans, makes little sense.'
printText {%x:unicodeBefore(%sqL)}                                             
end                                                                             
</p>


==See also==
==See also==
{{Template:String:UnicodeAfter footer}}
{{Template:Unicode:UnicodeAfter footer}}
The <var>[[UnicodeBefore (String function)|UnicodeBefore]]</var> string method.

Latest revision as of 17:10, 3 June 2016

Part of string after a substring (Unicode class)

[Introduced in Model 204 7.5]


UnicodeAfter operates on a Unicode variable or string and returns the portion of that string after a user-specified delimiter. To get the portion of the string before a delimiter, use the UnicodeBefore method.

Syntax

%outUnicode = unicode:UnicodeAfter( substring, [Start= number])

Syntax terms

%outUnicode A Unicode variable to hold the output of the parsed input string, unicode.
unicode A Unicode string that holds the string to be parsed.
substring A Unicode string that holds the separator character or characters on which parsing occurs.
Start This numeric value is the starting point for parsing. The default value is 1, indicating the beginning of the string.

This is a name required argument, and it cannot be 0. If a value larger than the string length is specified, the method returns a null string.

Usage notes

  • If a starting value is entered, the %outUnicode value is the content of the string that begins after the first occurrence of the delimiter substring encountered after the specified start point, and that ends at the end of the string.

    The delimiter string is not a list of individual delimiters; it is a single delimiter which may be multiple characters. If your delimiter is "ok", the method looks for occurrences of those two lowercase letters, and it returns a value that starts after the first occurrence found after the starting point.

  • This method is always case-sensitive.

Examples

In the following request, the given initial string is "Manos: The Hands of Fate [is a D-minus] of a B movie". The substring that follows the left square bracket ([) character representation is excerpted by UnicodeAfter. The request uses an enhancement for square-bracket handling introduced in version 7.6 of Model 204.

begin %x is unicode %x = 'Manos: The Hands of Fate [is a D-minus] ':U 'of a B movie' printText {%x:unicodeAfter('[':U)} end

The result is:

is a D-minus] of a B movie

See also