doc: Add an example for `Array.sort()`

This may help people understand the difference between alphabetical
and natural order more quickly.

(cherry picked from commit 1de9118c5f)
This commit is contained in:
Hugo Locurcio 2020-01-31 21:19:17 +01:00 committed by Rémi Verschelde
parent 3410dd3a9e
commit 47368f2b7c
1 changed files with 6 additions and 1 deletions

View File

@ -322,7 +322,12 @@
<method name="sort"> <method name="sort">
<description> <description>
Sorts the array. Sorts the array.
[b]Note:[/b] strings are sorted in alphabetical, not natural order. [b]Note:[/b] Strings are sorted in alphabetical order (as opposed to natural order). This may lead to unexpected behavior when sorting an array of strings ending with a sequence of numbers. Consider the following example:
[codeblock]
var strings = ["string1", "string2", "string10", "string11"]
strings.sort()
print(strings) # Prints [string1, string10, string11, string2]
[/codeblock]
</description> </description>
</method> </method>
<method name="sort_custom"> <method name="sort_custom">