Brauche Hilfe bei Ersetzen von Zeichen

Advanced Renamer forum
#1 : 02/05-22 12:06
Oldmicho
Oldmicho
Posts: 2
Hallo Gemeinde - habe hier etwas Schwierigkeiten, einige Strings in den Filenamen zu erssetzen. Hoffe, es kann mir jemand weiterhelfen. Habe hier viele Videofiles konvertiert mit Handbrake, das leider die Eigenschaft hat, immer die Nummerierung -1, -2 -3 usw. anzuhängen. Wenn nun der Filename bspl. "S05E01" hat sieht es hinterher so aus : S05e01-01, S05e02-02 usw.... - möchte das kelien e wieder durch das grosse ersetzen und die Nummerung -x entfernen. Da es auch mehrere Staffel sein können, kann es auch sein, dass bspl. S04xxxx oder S03xxxx im Spiel sind. Wie wäre da die Sequenz um generell alle S0xe mit S0xE zu ersetzen und auch mit der Nummerierung ? Muss ich was besonderes einstellen beim Renamer ?

Manche wenige Files haben auch noch nach der Endung
zusätzlichen Text > bspl. > S05e01.mkv Ich dreh noch durch (Titel)

Wie kann man den Text wegbekommen ?

Vielen lieben Dank an alle - hoffe, habe mich verständlich ausgedrückt, ansonsten sorry und übt ein wenig Nachsicht mit Anfänger.....


02/05-22 12:06
#2 : 02/05-22 12:47
David Lee
David Lee
Posts: 1125
Translation:

Hello community - I'm having some trouble replacing some strings in the file names. Hope someone can help me. I converted many video files here with Handbrake, which unfortunately has the property of always appending the numbering -1, -2, -3, etc. If now the file name for example "S05E01" looks like this afterwards: S05e01-01, S05e02-02 etc... - would like to replace the small e with the big one and remove the numbering -x. Since there can also be several seasons, it can also be the case that eg S04xxxx or S03xxxx are in play. How about the sequence to generally replace all S0xe with S0xE and also with the numbering? Do I have to set something special with the Renamer?

Some few files also have after the extension
additional text > e.g. > S05e01.mkv I'm still going crazy (Title)

How can you get rid of the text?

Thank you so much everyone - I hope I made myself clear, otherwise sorry and bear with beginners.....

----------
Oldmicho


02/05-22 12:47
#3 : 02/05-22 13:01
David Lee
David Lee
Posts: 1125
Verwenden Sie eine Methode Ersetzen...

Suchtext: ^(S\d{2}).*(e\d{2}).*
Ersetzen durch: \1\U2
Reguläre Ausdruck
Anwenden auf: Name

Den letzten Teil deiner Frage verstehe ich nicht.
Wenn Sie meinen, dass Sie eine Erweiterung entfernen möchten - bslp S05e01.mkv -> S05E01, dann ändern Sie "Anwenden auf: Name und Erweiterung". Andernfalls ignoriert Advanced Renamer einfach jede Erweiterung.

______________________________________________________________________________

Use a Replace method...

Text to be replaced: ^(S\d{2}).*(e\d{2}).*
Replace with: \1\U2
Use regular expressions
Apply to: Name

I don't understand the last part of your question.
If you mean that you want to remove any extension - ie S05e01.mkv -> S05E01 then change "Apply to: Name and extension. Otherwise Advanced Renamer will simply ignore any extension.


02/05-22 13:01
#4 : 02/05-22 19:44
Oldmicho
Oldmicho
Posts: 2
Reply to #3:

Thank you very much - the replace command is beautiful running. I Don't understand the depht from this parameters, but works great. The last part of questions was not remove the extension, means, when is a text in the title or after the extension > for example :

This is a text1 S01xx-01.m4v This is a text2

I want remove sometimes text1 and sometimes text2 and always the numbers -01, eg -02....

Thank you for fantastic help - best regards from germany


02/05-22 19:44
#5 : 03/05-22 20:53
David Lee
David Lee
Posts: 1125
Reply to #4:

Versuche dies...

Methode Ersetzen...

Suchtext: .*(S\d{2}[^-]*).*
Ersetzen durch: \1\U2
Reguläre Ausdruck
Anwenden auf: Name

gefolgt von Methode Muster entfernen...

Muster: .* (ie platz + ".*")
Anwenden auf: Erweiterung


03/05-22 20:53 - edited 03/05-22 20:54