My brain automatically ignores words like "The" when thinking where a folder or file would be, so I'd automatically go looking for a folder called "The Beatles" under B and not T.
Is there any way of getting Xyplorer to sort the name column like this?
Is it possible to exclude words like "a", "an" and "the" from the name sort?
-
unabatedshagie
- Posts: 33
- Joined: 07 Mar 2018 12:10
Re: Is it possible to exclude words like "a", "an" and "the" from the name sort?
Apart from using a manual sort order you could use a scripted custom column as an alternative
Code: Select all
if (<cc_isfolder>) { return regexreplace(<cc_name>, "^(a|an|the)\b\s*"); }
else { return <cc_name>; }
One of my scripts helped you out? Please donate via Paypal
Re: Is it possible to exclude words like "a", "an" and "the" from the name sort?
Enable this:
Tools | Customize List | [x] Ignore Articles When Sorting
Tools | Customize List | [x] Ignore Articles When Sorting
-
unabatedshagie
- Posts: 33
- Joined: 07 Mar 2018 12:10
XYplorer Beta Club