VBScript Coding Challenge: Sort Array by String Length after Split Command
问题 I am a C student in VBScript coding and need a little help. My code executes a split command as follows: outputArray = split(Description," ") With the individual words from Description now in an array, I want to sort the array based on the string length for each word. So, for example, if Description is equal to "this is an example of a description" then my array values are [this, is, an, example, of, a, description], right? But I want to resort the array so that the longest words are first, i