I'm working with an array that looks like this:
arr = ["100 abc", "ad", "5 star", "orange"];
The goal is to first sort the strings without numbers at the beginning, then sort the strings with numbers added at the end. The numbers are to be omitted and the strings sorted alphabetically by name.
The expected output should look like this:
ad, orange, 100 abc, 5 star.
Do you have any suggestions for how I can achieve this in TypeScript/Angular?