Sorting words in a string
I would like to sort words alphabetically in a string. I am stuck trying to get the list back into one string. string= "sort this sentence";
string_list = sort list(words(string )); // string_list = {"sentence", "sort", "this"};
Sorted_string = (string_list); // not sure how to create Sorted_string = "sentence sort this"
show(string, string_list, Sorted_string);