Posts: 16,784
Threads: 720
Joined: May 2025
Reputation:
0
Haven't needed this ability for a looong time, but I'm sure I used to have something that could alphabetize a selected list of words/sentences, but I'm not seeing this capability in anything I've now got installed.
Not in TextEdit. Not in Notes. Not in Pages. Not in TextWrangler.
Search of the Apple App Store doesn't zero in on anything, nor does MacUpdate.
Am I just overlooking this capability somewhere, or is it now only in high end word processing apps?
TIA
Posts: 523
Threads: 60
Joined: May 2025
Reputation:
0
Paste into a spreadsheets and sort?
Numbers, Libre Office, Excel?
Posts: 17,292
Threads: 1,510
Joined: May 2025
Reputation:
1
Go into Word (or other word processing program w/ adequate functionality), do a Find & Replace for the space character " " with a carriage return... in Word it's "^p". That gives you a giant list of your words. Use the Sort function (in Word it's under the "Table" menu) to sort by 'Text' in ascending order, and you have an alphabetized list.
==
Posts: 32
Threads: 0
Joined: May 2025
Reputation:
0
BBEdit can sort text lines.
Posts: 68,318
Threads: 17,208
Joined: May 2025
Reputation:
1
.....fave app is potato skins....filled with........
_____________________________________
I reject your reality and substitute my own!
Posts: 4,930
Threads: 69
Joined: May 2025
DeusxMac wrote:
Not in TextWrangler.
My version of TextWrangler has it. (version 5.5.2)
Select text.
Select from the menu Text->Sort Lines...
Of course, Terminal can do it.
$ sort unsorted.txt > sorted.txt
Posts: 4,930
Threads: 69
Joined: May 2025
If you already have the text inside a program such as a word processor and don't want to save it to a separate plain text file...
Highlight the text.
Copy.
At the Terminal command prompt type "pbpaste | sort | pbcopy" and hit return.
Go back to your word processor and Paste.
The selection will be replaced with the text sorted.
By default it will be sorted alphabetically in ascending order.
To sort in descending order use "pbpaste | sort -r | pbcopy"
To sort in ascending numerical order use "pbpaste | sort -n | pbcopy"
To sort in descending numerical order use "pbpaste | sort -nr | pbcopy"
Posts: 4,930
Threads: 69
Joined: May 2025
Bernie wrote:
[bOld school Mac software.
TextSoap 8
Requires macOS (OS X) 10.10 or later
macOS 10.10 seems pretty new school to me.
I run 10.6.8 on my primary productivity machine.