diff options
author | Emistry <Equinox1991@gmail.com> | 2015-09-06 19:40:03 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-20 20:44:27 +0100 |
commit | 6a0093b170719092e6c0f11b889353cd70b38313 (patch) | |
tree | cf02d7d61916414c4450c64a07e0616162c21bc8 /doc/script_commands.txt | |
parent | 851e97a20701bf2800491690838f654a9a6638e6 (diff) | |
download | hercules-6a0093b170719092e6c0f11b889353cd70b38313.tar.gz hercules-6a0093b170719092e6c0f11b889353cd70b38313.tar.bz2 hercules-6a0093b170719092e6c0f11b889353cd70b38313.tar.xz hercules-6a0093b170719092e6c0f11b889353cd70b38313.zip |
*explode return array size.
http://herc.ws/board/topic/7489-explode-to-push-arraysize/
Closes #700 as merged
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 2dd4fa575..852a003b7 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -8007,17 +8007,19 @@ Breaks a string up into substrings based on the specified delimiter. Substrings will be stored within the specified string array. Only the 1st char of the delimiter parameter will be used. If an empty string is passed as a delimiter, the string will be placed in the array in its original -form, without any changes. +form, without any changes. Return the number of elements written to +<dest_array>. Example: - explode(.@my_array$, "Explode:Test:1965:red:PIE", ":"); + .@num_elements = explode(.@my_array$, "Explode:Test:1965:red:PIE", ":"); //.@my_array$ contents will be... //.@my_array$[0]: "Explode" //.@my_array$[1]: "Test" //.@my_array$[2]: "1965" //.@my_array$[3]: "red" //.@my_array$[4]: "PIE" + //.@num_elements: 5 --------------------------------------- |