Merge pull request #38548 from kuruk-mm/add_string_join_to_gdscript
GDScript: Add join method on String
This commit is contained in:
commit
6a0473bcc2
|
@ -262,6 +262,7 @@ struct _VariantCall {
|
||||||
VCALL_LOCALMEM3R(String, split);
|
VCALL_LOCALMEM3R(String, split);
|
||||||
VCALL_LOCALMEM3R(String, rsplit);
|
VCALL_LOCALMEM3R(String, rsplit);
|
||||||
VCALL_LOCALMEM2R(String, split_floats);
|
VCALL_LOCALMEM2R(String, split_floats);
|
||||||
|
VCALL_LOCALMEM1R(String, join);
|
||||||
VCALL_LOCALMEM0R(String, to_upper);
|
VCALL_LOCALMEM0R(String, to_upper);
|
||||||
VCALL_LOCALMEM0R(String, to_lower);
|
VCALL_LOCALMEM0R(String, to_lower);
|
||||||
VCALL_LOCALMEM1R(String, left);
|
VCALL_LOCALMEM1R(String, left);
|
||||||
|
@ -1816,6 +1817,7 @@ void register_variant_methods() {
|
||||||
ADDFUNC3R(STRING, PACKED_STRING_ARRAY, String, split, STRING, "delimiter", BOOL, "allow_empty", INT, "maxsplit", varray(true, 0));
|
ADDFUNC3R(STRING, PACKED_STRING_ARRAY, String, split, STRING, "delimiter", BOOL, "allow_empty", INT, "maxsplit", varray(true, 0));
|
||||||
ADDFUNC3R(STRING, PACKED_STRING_ARRAY, String, rsplit, STRING, "delimiter", BOOL, "allow_empty", INT, "maxsplit", varray(true, 0));
|
ADDFUNC3R(STRING, PACKED_STRING_ARRAY, String, rsplit, STRING, "delimiter", BOOL, "allow_empty", INT, "maxsplit", varray(true, 0));
|
||||||
ADDFUNC2R(STRING, PACKED_FLOAT32_ARRAY, String, split_floats, STRING, "delimiter", BOOL, "allow_empty", varray(true));
|
ADDFUNC2R(STRING, PACKED_FLOAT32_ARRAY, String, split_floats, STRING, "delimiter", BOOL, "allow_empty", varray(true));
|
||||||
|
ADDFUNC1R(STRING, STRING, String, join, PACKED_STRING_ARRAY, "parts", varray());
|
||||||
|
|
||||||
ADDFUNC0R(STRING, STRING, String, to_upper, varray());
|
ADDFUNC0R(STRING, STRING, String, to_upper, varray());
|
||||||
ADDFUNC0R(STRING, STRING, String, to_lower, varray());
|
ADDFUNC0R(STRING, STRING, String, to_lower, varray());
|
||||||
|
|
|
@ -837,6 +837,19 @@
|
||||||
Returns a copy of the string with characters removed from the right.
|
Returns a copy of the string with characters removed from the right.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
<method name="join">
|
||||||
|
<return type="String">
|
||||||
|
</return>
|
||||||
|
<argument index="0" name="parts" type="PackedStringArray">
|
||||||
|
</argument>
|
||||||
|
<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="sha1_buffer">
|
<method name="sha1_buffer">
|
||||||
<return type="PackedByteArray">
|
<return type="PackedByteArray">
|
||||||
</return>
|
</return>
|
||||||
|
|
Loading…
Reference in New Issue