You are not logged in.
hola saludos a todos alguien me puede ayudar a renombrar mis archivos mp3 lo que quiero saber es como aserle para eliminar los digitos pero que ignore los digitos que esten dentro de parentesis ejem. (1) (2) (3) ya que me conviene que esten duplicados
93 Yo Soy El Aventurero(1)
94 Yo Soy El Aventurero(2)
95 Yo Soy El Aventurero(3)
hello greetings to all someone can help me rename my mp3 files I want to know is how to remove digits aserle but ignore digits that are within brackets ahem . (1) (2) (3) because it suits me who are duplicates
Last edited by den4b (2016-05-04 14:29)
Offline
There's probably a better way, put I wonder if you could do:
Step 1: Find and Replace "(1)" > "(uno)", "(2)" > "(dose)", and so on...
Step 2: Delete all numbers 1,2,3,4, and so on.
Step 3: Find and Replace "(uno)" > "(1)", and so on...
You could even save these as "Transliterations."
(1)=(uno)
(2)=(dose)
...
And
(uno)=(1)
...
=============
Hay probablemente una mejor manera, pongo Me pregunto si usted podría hacer :
Paso 1 : Buscar y reemplazar " ( 1 ) "> " (ONU ) " , " ( 2 ) "> " ( dosis ) " , y así sucesivamente ...
Paso 2: Eliminar todos los números 1,2,3,4 , y así sucesivamente .
Paso 3: Buscar y reemplazar " ( uno ) "> " ( 1 ) " , y así sucesivamente ...
Incluso se puede guardarlos como " Transliteraciones . "
Last edited by kunkel321 (2016-05-04 20:35)
Offline
Thanks friend for your explanation the program removes me everything must be removed or replaced to clean arcivos of music downloaded just in delete characters to and duplicates with different artist names and I want to keep them both what I could not Aser it is that the program automatically renowned me what it does is send me a herror "can not create a file that already exists. (183)" ahem.
CHILITO PIQUIN.MP3
CHILITO PIQUIN.MP3 you can not create a file that already exists. (183)
You Olvido.mp3 how
You Olvido.mp3 how you can not create a file that already exists. (183)
You Olvido.mp3 how you can not create a file that already exists. (183)
WHO LOSES AS A ESTRELLA.MP3
DAME A MINUTO.MP3
THE CHOFER.MP3 ??
MEN MUST NOT LLORAR.MP3
MY FRIEND THE TORDILLO.MP3
MY FRIEND THE TORDILLO.MP3 you can not create a file that already exists. (183)
HOW WHO LOSES AS A ESTRELLA.MP3 you can not create a file that already exists. (183)
NUBE VIAJERA.MP3
Offline
This is what I was thinking of:
Esto es lo que yo estaba pensando:
Is this the desired outcome?
¿ esto es el resultado deseado?
Last edited by kunkel321 (2016-05-05 01:40)
Offline
A better solution would be to use a RegEx rule:
1) RegEx: Replace expression "\d+([^)\d])" with "$1" (skip extension)
2) CleanUp: Normalize spaces, Fix spaces (skip extension)
This will remove all number sequences which do not end with a round bracket ")".
Example input:
93 Yo Soy El Aventurero(1)
94 Yo Soy El Aventurero(2)
95 Yo Soy El Aventurero(3)
Test 123 Test 567 (123) (890)
Output:
Yo Soy El Aventurero(1)
Yo Soy El Aventurero(2)
Yo Soy El Aventurero(3)
Test Test (123) (890)
Offline
Gracias ha todos por las esplicaciones muchas gracias.
Offline