#1 : 01/07-20 13:57 Michael
Posts: 1
|
Is there a way to change from Nachname, Vorname - Artikel - Text.txt to Artikel - Text - Vorname Nachname.txt
From Nachnahme, Vorname - Artikel - Text.txt to Nachname, Vorname - Artikel - Text.txt to Artikel - Text - Nachname, Vorname was working. Thanks for help regards, Michael |
#2 : 01/07-20 16:27 David Lee
Posts: 1125
|
Replace: (^.*),(.*)- (.* - )(.*$)
With: \3\4 -\2\1 Use regular expressions |