glossary: occurrance -> occurrence (thanks kiyoshi)
FossilOrigin-Name: df4b015483fcca0b2a20cf5e20a9f24a3a86ab4b91c218c428e1a83147c4e9ac
This commit is contained in:
parent
fc2d232a2f
commit
a0ac537a9b
4 changed files with 8 additions and 8 deletions
|
@ -1217,10 +1217,10 @@ s:skip D: - A: - F: -
|
|||
Internal helper function used to skip over a string in a definition.
|
||||
|
||||
s:split D: sc-ss A: - F: -
|
||||
Split a string on the first occurrance of the specified character.
|
||||
Split a string on the first occurrence of the specified character.
|
||||
|
||||
s:split-on-string D: ss-ss A: - F: -
|
||||
Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
|
||||
Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
|
||||
|
||||
s:substr D: sfl-s A: - F: -
|
||||
Extract a substring from the specified string. This will take the characters starting at `f` and extend `l` characters in length.
|
||||
|
|
|
@ -3057,14 +3057,14 @@
|
|||
<b>Addr:</b> -<br>
|
||||
<b>Float:</b> -</p>
|
||||
</div>
|
||||
<p>Split a string on the first occurrance of the specified character.</p>
|
||||
<p>Split a string on the first occurrence of the specified character.</p>
|
||||
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
|
||||
<h2>s:split-on-string</h2>
|
||||
<div style='margin-left: 1em;'><p><b>Data:</b> ss-ss<br>
|
||||
<b>Addr:</b> -<br>
|
||||
<b>Float:</b> -</p>
|
||||
</div>
|
||||
<p>Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.</p>
|
||||
<p>Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.</p>
|
||||
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>s</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><p><b>Example:</b> <br>
|
||||
<br>
|
||||
<xmp style='background:#f2f2f2'> 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl</xmp>
|
||||
|
|
|
@ -4724,7 +4724,7 @@ s:split
|
|||
Addr: -
|
||||
Float: -
|
||||
|
||||
Split a string on the first occurrance of the specified character.
|
||||
Split a string on the first occurrence of the specified character.
|
||||
|
||||
Class: class:word | Namespace: s | Interface Layer: all
|
||||
------------------------------------------------------------------------
|
||||
|
@ -4735,7 +4735,7 @@ s:split-on-string
|
|||
Addr: -
|
||||
Float: -
|
||||
|
||||
Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
|
||||
Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string.
|
||||
|
||||
Class: class:word | Namespace: s | Interface Layer: all
|
||||
|
||||
|
|
|
@ -404,8 +404,8 @@ s:replace-all sss-s - - Replace all instances of s2 in s1 with s3. class:word
|
|||
s:reverse s-s - - Reverse the order of ASCII characters in a string. class:word {n/a} {n/a} s all
|
||||
s:right sn-s - - Return a new string containing the specified number of characters from the right side of the string. class:word {n/a} {n/a} s all
|
||||
s:skip - - - Internal helper function used to skip over a string in a definition. class:word {n/a} {n/a} s all
|
||||
s:split sc-ss - - Split a string on the first occurrance of the specified character. class:word {n/a} {n/a} s all
|
||||
s:split-on-string ss-ss - - Split a string on the first occurrance of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string. class:word 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl {n/a} s all
|
||||
s:split sc-ss - - Split a string on the first occurrence of the specified character. class:word {n/a} {n/a} s all
|
||||
s:split-on-string ss-ss - - Split a string on the first occurrence of the specified string. After the split, the top stack item will be the part of the string before the specified subsring, and the second item will be the rest of the original string. class:word 'Hello_Brave_World! 'Brave s:split-on-string s:put nl s:put nl {n/a} s all
|
||||
s:substr sfl-s - - Extract a substring from the specified string. This will take the characters starting at `f` and extend `l` characters in length. class:word {n/a} {n/a} s all
|
||||
s:temp s-s - - Move a string into the temporary string buffers. class:word {n/a} {n/a} s all
|
||||
s:to-float s- - -F Convert a string representation into a floating point value. class:word {n/a} {n/a} s rre
|
||||
|
|
Can't render this file because it contains an unexpected character in line 14 and column 96.
|
Loading…
Reference in a new issue