How do I sort by the numbers in the file name rather than by the letters?
E.g.
abc 126.mp4
jhgf 120.mp4
How do I sort by the numbers in the file name rather than by the letters?
Re: How do I sort by the numbers in the file name rather than by the letters?
I think you'll have to extract that and then sort by the extracted value.
Code: Select all
add-column:a a:=regex.extract(name:,"(\d+)\..*$")