You are not logged in.
Pages: 1
Bonjour, je souhaite déplacer une partie (récurrente) d'un nom de fichier.
Voici un exemple de ce que j'ai (sans l'extension) :
2022.05.09 Mad House
2004.04.22 Danzel
...
et voici ce que je souhaiterais obtenir :
Mad House 2022.05.09
Danzel 2004.04.22
...
Est-ce possible et si oui comment ?
D'avance un grand merci !
Offline
Hello, I want to move a (recurring) part of a file name.
Here is an example of what I have (without the extension):
2022.05.09 Mad House
2004.04.22 Danzel
...and here is what I would like to get:
Mad House 2022.05.09
Danzel 2004.04.22
...Is this possible and if so how?
Thanks in advance!
Try a Rearrange rule:
Split by exact pattern of delimiters " ", New pattern "$2 $1" (skip extension)
Offline
Hello
my first post
Try RegEx rule:
Add the following expression :
^([0-9]{4}\.[0-9]{2}\.[0-9]{2})\s([a-zA-Z0-9- \.]+)$
or
^(\d{4}\.\d{2}\.\d{2})\s([\w -\.]+)$
Replace pattern :
$2 $1
Skip extension : checkbox must be checked
Save rule.
this will result in
Mad House 2022.05.09
Danzel 2004.04.22
......
Last edited by Zig (2024-10-22 08:10)
Offline
Pages: 1