I have a list whose elements are like the following:
Region_1.csv, Region_33.csv, Region_2.csv, Region_4.csv, Region_105.csv, ....
The list has all numbers ranging from 1-105 with none missing. I want to sort this list according to the region number such that it looks like this:
Region_1.csv, Region_2.csv, Region_3.csv, Region_4.csv, Region_105.csv etc.
Since the numbers have variable digits, I am struggling to sort this list.
Thanks.