View Single Post
  #1  
Old 31.01.2023, 15:09
cstern cstern is offline
Mega Loader
 
Join Date: Jul 2012
Location: Denmark
Posts: 61
Default Renaming download package name (regex, Packagizer)

I want to rename the downloaded package from "text1 - text2- text3" (where textx can be any string) to "text1 - text3 - text2".

The regex for the matching string should be
"(\w+)\s+-\s+(\w+)\s+-\s+(\w+)"

and the rename should then be
"$1 - $3 - $2"

I tried to set this up in packagizer as shown in the attached screendump. I obvioulsy did something wrong. Can you please help me?

Thanks in advance

(sorry for the spelling error in the subject line - I cannot correct it after posting - should of course be "Renaming" not "Reniming"....)
Attached Thumbnails
Screendump 2023-01-31 kl. 13.57.jpg  

Last edited by cstern; 31.01.2023 at 15:12.
Reply With Quote