Tile - String - Substring – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with " ---- {{Ylands scripting navbox}}")
 
No edit summary
Line 1: Line 1:
[[Image:Ylands_Tile_-_String_substring.png]]
*'''Returns''' new [[Ylands Tile - String literal|'''string''']] of given length '''extracted''' from source text.
*'''Start index''' - position at which to start substring.
*'''Length''' - number of characters to be extracted.
[[Image:Ylands_Tile_-_String_substring2.png]]
*'''Returns''' new [[Ylands Tile - String literal|'''string''']] '''extracted''' from source text '''within''' the given '''range'''.
*Interval is '''half closed''' and does not include character at '''end''' position.
[[Image:Ylands_Tile_-_String_substring3.png]]
*'''Returns''' new [[Ylands Tile - String literal|'''string''']] '''extracted''' from given '''start''' position until the end source text.
*'''Start index''' - position at which to start substring.
=Notes=
*Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...




----
----
{{Ylands scripting navbox}}
{{Ylands scripting navbox}}

Revision as of 16:53, 20 December 2018

Ylands Tile - String substring.png

  • Returns new string of given length extracted from source text.
  • Start index - position at which to start substring.
  • Length - number of characters to be extracted.


Ylands Tile - String substring2.png

  • Returns new string extracted from source text within the given range.
  • Interval is half closed and does not include character at end position.


Ylands Tile - String substring3.png

  • Returns new string extracted from given start position until the end source text.
  • Start index - position at which to start substring.

Notes

  • Script counts positions from zero. 0 is the first position in a string, 1 is the second, 2 is the third ...



Template:Ylands scripting navbox