Skip to content

Instantly share code, notes, and snippets.

@JoeGlines
Created May 6, 2021 16:40
Show Gist options
  • Save JoeGlines/c4d71efd923662513a1c7d321c0c072f to your computer and use it in GitHub Desktop.
Save JoeGlines/c4d71efd923662513a1c7d321c0c072f to your computer and use it in GitHub Desktop.
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