Currently, I have a task at hand that requires sorting items within categories alphabetically, with the exception of Examples. Special characters and numbers should be prioritized over letters in the sorting order.
I've encountered an issue where most standard sort functions and plugins use the ASCII table for sorting. In this table, symbols like ~, },{ etc. are indexed higher than letters. As a result:
1 - #1 A T
2 - A T
3 - {C T
My desired outcome is:
1 - #1 A T
2 - {C T
3 - A T
If you have any advice or examples to offer, please share them as soon as possible.
Thank you in advance for your help.