Expose String::join over to GDScript

This commit is contained in:
Wilson E. Alvarez 2021-12-30 21:27:18 -05:00
parent 7fcfde9b75
commit d03b82cde7
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E
2 changed files with 13 additions and 0 deletions

View file

@ -480,6 +480,17 @@
Returns [code]true[/code] if this string contains only a well-formatted IPv4 or IPv6 address. This method considers [url=https://en.wikipedia.org/wiki/Reserved_IP_addresses]reserved IP addresses[/url] such as [code]0.0.0.0[/code] as valid.
</description>
</method>
<method name="join">
<return type="String" />
<argument index="0" name="parts" type="PoolStringArray" />
<description>
Return a [String] which is the concatenation of the [code]parts[/code]. The separator between elements is the string providing this method.
Example:
[codeblock]
print(", ".join(["One", "Two", "Three", "Four"]))
[/codeblock]
</description>
</method>
<method name="json_escape">
<return type="String" />
<description>