simple question, don't know if it gets a simple answer. Is there a way to sort a list of string wich contains letters and numbers, but considering the numbers as well?
For example, my list contains:
(1) ["Group 1", "Group2", "Group3", "Group10", "Group20", "Group30"]
(The strings doesn't have the word "group" necessarily, it could have others words)
if I sort it, it shows:
(2)
Group 1
Group 10
Group 2
Group 20
Group 3
Group 30
Is there a way to sort it like (1) ?
Thanks