Tile - String - Substring – Ylands
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Ylands editor navbox}}" to "{{Navbox/Ylands}}") |
Lou Montana (talk | contribs) m (Text replacement - "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}" to "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}}") |
||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
<!--- | |||
THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE. | |||
--> | |||
== Substring(Source, Start index, Length) == | |||
[[File:YlandsTile-86.png]] | |||
<pre>substr(start: number, length: number): string;</pre> | |||
=== Parameters === | |||
==== start ==== | |||
Starting position of removed text | |||
=Notes= | ==== length ==== | ||
*Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ... | |||
Lenght of removed text | |||
=== Returns === | |||
'''string''' | |||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | |||
Returns new '''string''' of given length '''extracted''' from source text. | |||
=== Notes === | |||
* '''Start index''' - position at which to start substring. | |||
* '''Length''' - number of characters to be extracted. | |||
* Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ... | |||
== Substring(Source, Start index, End Index) == | |||
[[File:YlandsTile-87.png]] | |||
<pre>substring(start: number, end: number): string;</pre> | |||
=== Parameters === | |||
==== start ==== | |||
==== end ==== | |||
=== Returns === | |||
'''string''' | |||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | |||
'''Returns''' new '''string''' '''extracted''' from source text '''within''' the given '''range'''. | |||
=== Notes === | |||
* Interval is '''half closed''' and does not include character at '''end''' position. | |||
* Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ... | |||
== Substring(Source, Start index) == | |||
[[File:YlandsTile-88.png]] | |||
<pre>substring(start: number): string;</pre> | |||
=== Parameters === | |||
==== start ==== | |||
Starting position of removed text | |||
=== Returns === | |||
'''string''' | |||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | |||
'''Returns''' new '''string''' '''extracted''' from given '''start''' position until the end of source text. | |||
=== Notes === | |||
* '''Start index''' - position at which to start substring. | |||
* Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ... | |||
---- | ---- | ||
{{Navbox/Ylands}} | {{Navbox/Ylands}} | ||
{{DEFAULTSORT:{{#sub:{{PAGENAME}}| | {{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}} | ||
[[Category: Instructions]] | [[Category: Instructions]] | ||
Latest revision as of 14:24, 24 November 2023
Substring(Source, Start index, Length)
substr(start: number, length: number): string;
Parameters
start
Starting position of removed text
length
Lenght of removed text
Returns
string
Availability
Client, Server, Custom Controller
Description
Returns new string of given length extracted from source text.
Notes
- Start index - position at which to start substring.
- Length - number of characters to be extracted.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...
Substring(Source, Start index, End Index)
substring(start: number, end: number): string;
Parameters
start
end
Returns
string
Availability
Client, Server, Custom Controller
Description
Returns new string extracted from source text within the given range.
Notes
- Interval is half closed and does not include character at end position.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...
Substring(Source, Start index)
substring(start: number): string;
Parameters
start
Starting position of removed text
Returns
string
Availability
Client, Server, Custom Controller
Description
Returns new string extracted from given start position until the end of source text.
Notes
- Start index - position at which to start substring.
- Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...