Tile - String - Substring – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:


==== start ====
==== start ====
Starting position of removed text


==== length ====
==== length ====
Lenght of removed text


=== Returns ===
=== Returns ===


'''string'''
'''string'''
=== Availability ===
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]]


=== Description ===
=== Description ===
Line 41: Line 49:


'''string'''
'''string'''
=== Availability ===
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]]


=== Description ===
=== Description ===
Line 59: Line 71:


==== start ====
==== start ====
Starting position of removed text


=== Returns ===
=== Returns ===


'''string'''
'''string'''
=== Availability ===
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]]


=== Description ===
=== Description ===

Revision as of 12:17, 12 November 2021

Substring(Source, Start index, Length)

YlandsTile-86.png

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)

YlandsTile-87.png

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)

YlandsTile-88.png

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