Is it possible to sort a list of strings using regex. I have a list of strings that look like the following and i would like to sort them by the version number...
_(v\d+)_
Current list
main_cam_v005_01
main_cam_v001_1001
main_cam_v008_1000
main_cam_v003_305
main_cam_v007_1007
Desired list
main_cam_v001_1001
main_cam_v003_305
main_cam_v005_01
main_cam_v007_1007
main_cam_v008_1000