You are not logged in.
Pages: 1
How to rename file extensions to the winrar format?
filename.r00 to filename.r99
filename.r00
filename.r01
...
filename.r10
filename.r11
...
filename.r99
currently the files are filename.10 to filename.99
Offline
FROM:
filename.10
filename.11
filename.12
filename.13
filename.14
TO:
filename.r00
filename.r01
filename.r02
filename.r03
filename.r04
DO:
1. Delete two from the right, do NOT skip extension (means: ignore extension dot)
2. Insert literal 'r', do NOT skip extension
3. Add numbering, do NOT skip extension
USE Rules:
1) Delete: Delete from Position 1 until Count reaches 2 (right-to-left)
2) Insert: Insert "r" as Suffix
3) Serialize: Serialize Incremental from 0 step 1 repeat 1 and pad to length 2 as suffix (after extension)
Read the *WIKI* for HELP + MANUAL + Tips&Tricks.
If ReNamer had helped you, please *DONATE* to Denis or buy a PRO license. (Read *Lite vs Pro*)
Offline
Thx 4 responding Stefan,
I'm really new to regular expressions & hope to decode what U just suggested.
I'll try quick
Works wonders!
Thanks for the illustrated version!
Change r to .r
Using Rules:
1) Delete: Delete from Position 1 until Count reaches 2 (right-to-left)
2) Insert: Insert .r as Suffix
3) Serialize: Serialize Incremental from 0 step 1 repeat 1 and pad to length 2 as suffix (after extension)
The best part is saving this as a WinRAR rename preset
Last edited by student101 (2013-04-23 00:33)
Offline
Thx 4 responding Stefan,
I'm really new to regular expressions & hope to decode what U just suggested.
Just FYI, no RegEx was used here.
The best part is saving this as a WinRAR rename preset
Must say I'm curious - how are you ending up with incorrectly named WinRAR split archives so often anyway?
Last edited by Andrew (2013-05-01 16:44)
Offline
Pages: 1