Universeorange.com/Docs/
{string.split(String $string, Int $length=1)}
Convert a string to an array.
string
The input string.
length
Maximum length of the chunk.
If the optional length parameter is specified, the returned array will be broken down into chunks with each being length in length, otherwise each chunk will be one character in length.
Falseis returned if length is less than1. If the lengthlengthexceeds the length of string, the entire string is returned as the first (and only)arrayelement.
https://www.php.net/manual/en/function.str-split.php
Last modified: 2021-06-06
© 2021 universeorange.com