You are not logged in.
Pages: 1
Buenas tardes necesito ayuda soy nuevo y quisiera saber como hacer lo siguiente:
quiero eliminar todo lo que hay después de un nombre sin eliminar la extensión del archivo.
ejm:
el nombre es así:
nombre1_TIJUANO_cancion_en_ingles1.txt
nombre2_TIJUANO_poema_de_amor_martha_chavez.txt
nombre3_TIJUANO_libro_de_quimica.txt
quiero que quede así:
nombre1_TIJUANO.txt
nombre2_TIJUANO.txt
nombre3_TIJUANO.txt
No se si me hago entender, de antemano Gracias.
Offline
This can be accomplished using several different ways. Have you tried any renaming rules so far?
For example, any one of these 3 rules will do the job, but each slightly differently:
A) Delete: Delete from Position 16 until the End (skip extension)
B) Delete: Delete from Delimiter "_TIJUANO" until the End (leave delimiter) (skip extension)
C) Rearrange: Split by delimiters "_", New pattern "$1_$2" (skip extension)
Pick any one.
P.S. I do not understand Spanish, so I had to use an online translator.
Offline
Thank you so much.
with option 2 I look good
Offline
Pages: 1