I have a list of strings lets say the items are like this
item_1
item_2
item_4
item_10
item_8
item_11
if i do list.sort() i get the following
item_1
item_10
item_11
item_2
item_4
item_8
Somehow i need to get these in order numerically but im dealing with strings not numbers.

