Tile - String - Substring – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Ylands editor navbox}}" to "{{Navbox/Ylands}}")
m (YlandsClassyBot moved page Ylands Tile - String substring to Ylands:Tile - String - Substring: New Structure)
(No difference)

Revision as of 08:09, 8 July 2021

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 ...