Some older functions that were collecting dust. _StringShuffle - Shuffles characters of a string _StringUnique - Return unique/non-dupe characters from a string _StringSort - Sort characters of a string _ArrayShuffle - Takes the given array and shuffles the order in which the elements appear in the array. Functions: Global $sString
; _StringShuffle Example
$sString = _StringShuffle("The barking fat and yellow dog wore two collars for good luck")
MsgBox(0, '', $sString)
; _StringUnique Exampl