themaCreator
http://creator.themasoftware.com/forum/

Replacements help.
http://creator.themasoftware.com/forum/viewtopic.php?f=4&t=7222
Page 6 of 6

Author:  Freddy [ March 24th, 2024, 12:26 pm ]
Post subject:  Re: Replacements help.

"Settings" -> "Process" -> "File" -> enable "Capitalize file / folder name.".

This will affect the subject as well.

To move "tenoke-" to the end, subject replacement:

Search for:
Code:
^(.+?)-(.+)


Replace with:
Code:
$2-$1


Enable regex search.

Author:  ad-team [ March 30th, 2024, 9:35 pm ]
Post subject:  Re: Replacements help.

Helllo

Code:
Nightmare House-  30 Mar, 2024


after
Code:
Nightmare House (2024)

Author:  Freddy [ March 31st, 2024, 12:32 am ]
Post subject:  Re: Replacements help.

Search for:
Code:
-\s*[0-9]{1,2}\s*[A-Za-z]{3},\s*([0-9]{4})


Replace with:
Code:
 ($1)


Enable regex search.

There is a space at the start in "Replace with".

Author:  ad-team [ April 27th, 2024, 11:03 pm ]
Post subject:  Re: Replacements help.

Hello
before
Code:
MY.DESTINY.GIRLS.Update.v20240417-TENOKE


Code:
ReMix Update v1.01.07-TENOKE

Code:
Against the Storm Update v1.3.2R-TENOKE


after
Code:
MY DESTINY GIRLS - TENOKE


Code:
ReMix - TENOKE

Code:
Against the Storm - TENOKE

thanks

Author:  Freddy [ April 28th, 2024, 7:46 pm ]
Post subject:  Re: Replacements help.

Search for:
Code:
v[0-9]+(\.[0-9]+)?(\.[0-9]+)?([A-Z]*)?(-)?


Replace with:
Code:
$4


Enable regex search.

There is space at the end in "Replace with".

Author:  ad-team [ April 28th, 2024, 7:54 pm ]
Post subject:  Re: Replacements help.

this regex forgot to remove update also

i tried this
Code:
(.+)\sUpdate\sv\d+\.\d+\.\d+R-(.+)

after
Code:
$1 - $2

but dont know if will work for all example

Author:  Freddy [ April 28th, 2024, 8:48 pm ]
Post subject:  Re: Replacements help.

Added to remove "Update" as well (this one replacement is enough), it affects more cases. Don't add both or multiple - it won't work then. Only this one:

Search for:
Code:
(Update.)?v[0-9]+(\.[0-9]+)?(\.[0-9]+)?([A-Z]*)?(-)?


Replace with:
Code:
$5


Enable regex search.

Page 6 of 6 All times are UTC
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/