Replace Pioneer Home   All Examples   Free Download

 New request --free  RSS: Replace Pioneer Examples

195.Batch file rename -- How to batch rename files by removing all letters and symbols in filename, only keep numbers?

User: editor -- 2008-06-20          << 194  196 >>
Hits: 4457
Type: Batch file rename   
Search all Batch file rename examples
Description:
How to batch rename files by removing all letters and symbols in filename, only keep numbers?
Input Sample:
file_123.jpg 
fff_222.jpg 
fff_333_uuu.jpg 
...
Output Sample:
123.jpg 
222.jpg 
333.jpg
Answer:
Hint: You need to Download and install "Replace Pioneer" on windows platform to finish following steps.
1. open menu 'Tools->Batch Runner' 
2. click 'Pick files' select multiplue files 
3. sort these files by name or date or others, by clicking different column titles. 
4. change 'set output filename' entry from ${FILENAME} to: 
 and click 'Apply' at right. 
 
 
5. click 'Rename', finish. 
 
if you want to record the mapping between oldname and newname, you can click 'Export List', and save the mapping to a file. 
 
Note: ${BASE}{replace,'[^\d]',''}.${EXT} means remove all non-number characters in basename. 
 
There are many ways to change filename flexibly: 
 
#.jpg --- 1.jpg, 2.jpg, ...  
##.jpg --- 01.jpg, 02.jpg, ...  
###.jpg --- 001.jpg, 002.jpg, ...  
@.jpg --- a.jpg, b.jpg, ...  
${BASE}###.jpg --- add 3 digit sequence number 
${BASE}{1,3}.jpg --- keep 1 to 3 chars of filename 
${BASE}{-3,-1}.jpg ---  keep last 3 chars of filename 
${BASE}{replace,'a','b'}.jpg --- replace a with b 
${BASE}{replace,'_',''}.jpg ---remove '_' 
... 

Screenshot 1:  Batch_Runner_Window


Similar Examples:
How to batch rename files by removing all the letters and keep the rest? (76%)
How to batch rename files by removing all trailing numbers? (74%)
How to rename files by removing all leading numbers? (67%)
How to batch rename files by removing first 3 characters of filename? (67%)
How to batch rename files by moving the leading numbers to the end? (65%)
How to batch rename files by removing the first 3 characters of each file name? (65%)
How to batch rename files from month name to month number? (64%)
How to batch rename files by adding parenthesis for each number? (64%)

Check Demo of Batch file rename
Keywords:
basename  keep numbers  symbols  export  keep last  mapping  record  keep number  letters  symbol  batch add sequence numbers to file name  batch file to change sequence numbers  add sequence numbers batch file  rename symbols batch  remove characters letters or numbers  batch replace symbols  all batch symbols  keep only letters