How to extract the last 5 characters from random names

Advanced Renamer forum
#1 : 02/03-24 23:26
raf
raf
Posts: 7
Hello

I have random files and I'd like to rename the filenames to preserve 5 characters from the end of the name, but all files have different lenghts.

How would I go about scripting this in advanced renamer?

alexconsani_1703461883_3265197398812440395_424427677
HvLPHTo
noVUg93
vavallogic_1709370658_3314763793966458118_57376711638

The result would be:
27677
LPHTo
VUg93
711638

Tried the regular expression:
(.*)([^\.]+)\.(.*)
then replace with \2
but gave nothing good. ChatGPT not helping here
Thanks


02/03-24 23:26 - edited 02/03-24 23:41
#2 : 03/03-24 04:02
Delta Foxtrot
Delta Foxtrot
Posts: 118
Hey raf,

How about this:

1.Method MOVE (move 5 chars at end to beginning)
Move from 1
Move count 5
Move to 1000
Backwards: CHECKED
Use Regex OFF

2. Method REMOVE (everthing after 5th char)
Remove count 1000
Starting at 6
Backwards UNCHECKED (!)
Regex OFF

Booya! :) I doubt it makes a difference, but if you have a lot of files it MIGHT be more efficient to make the "move to" and "remove count" fields as low as possible to be effective on all your files.

Best,
DF


03/03-24 04:02 - edited 03/03-24 04:05
#3 : 03/03-24 05:26
Styb
Styb
Posts: 80
Reply to #1:
Hello,
Add a specific separator string delimiting the last 5 characters, and then you can delete the first portion of filename.

ADD
Add: -@-
In position: 5
backwards

REPLACE
Replace: (.*)-@-(.*)
With: \2
via regular expression.

Here is the .aren file with the above two methods: https://www.mediafire.com/file/l6c9suaz2o7dumr/l ast5.aren/file


03/03-24 05:26 - edited 03/03-24 08:32
#4 : 03/03-24 10:19
Miguel
Miguel
Posts: 65
Reply to #1: Hi,
Another solution
Replace: .*(\w{5})$
Replace with: $1

Use regex



03/03-24 10:19
#5 : 03/03-24 11:38
Delta Foxtrot
Delta Foxtrot
Posts: 118
Reply to #4:

Hey Miguel,

How ya doin' over there in paradise my friend? :)

Sorry to be a Delta-downer, but that regex fails if there are non-word characters in the last 5 of the filename. There were none in raf's examples, but... you know Murphy. I substituted ^\\ for \w and it worked on a big sample of files, and I think it'll work consistently. Ya can't use "\" in a filename, but it works for the regex.

So,

.*([^\\]{5})$

should get the job done, and in one measly little method! :) I knew there was a way, but I just couldn't see it until you woke me up!

There ya go raf, you've got choices! If you've got a lot of files you might start thinking about what you'll do for files that have the same last five characters (happened to me while testing the solutions).

Best to all,
DF


03/03-24 11:38 - edited 03/03-24 11:44
#6 : 03/03-24 12:01
Miguel
Miguel
Posts: 65
Reply to #5:
Hi Delta.
You are right it fail if you use non words characters. My fault.
Thank you.


03/03-24 12:01 - edited 03/03-24 12:03
#7 : 03/03-24 13:39
raf
raf
Posts: 7
Reply to #5:
oh wow, i didnt realise things like this could be done. And I am glad there are such smart people around here!!!!


03/03-24 13:39
#8 : 03/03-24 13:40
raf
raf
Posts: 7
Reply to #2:
thanks. Tried Delta's method and seemed to be the simplest. But thanks!


03/03-24 13:40
#9 : 04/03-24 06:34
Delta Foxtrot
Delta Foxtrot
Posts: 118
Reply to #8:

An embarrassment of riches...

New Name method:

New name: <RSubstr:1:5>

BOOM!

:)
DF


04/03-24 06:34