I have the following task:
All items within categories should be sorted alphabetically except for Examples. Special characters and numbers should be displayed before letters.
I'm facing with a problem. Most of standard sort functions and plugins are being used the ASCII table. In this table the following symbols: ~,},{ etc. have the index more than letters,for example: Actual result of sorting is:
1 - #1 A T
2 - A T
3 - {C T
I need to get:
1 - #1 A T
2 - {C T
3 - A T
Please give me your piece of advice or any examples ASAP.
Best Regards.