Created
May 6, 2021 16:40
-
-
Save JoeGlines/c4d71efd923662513a1c7d321c0c072f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clipboard= | |
( | |
1 One is long | |
2 two is longer | |
3 is short | |
) | |
Sort, Clipboard, F Str_Length ;use sort function below to sort on string length | |
MsgBox % Clipboard | |
return | |
;**********************Sort function********************************* | |
Str_Length(a1,a2){ | |
Return StrLen(a1) - StrLen(a2) ;return a number telling sort where to put the row | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment