Hello there,
Is there a possiblity to check - and correct if necessary - a large amount of files for unnecessary spaces / double spaces in filenames?
Examples which I would like to correct:
1) Author - Title.epub
2) Author - Title.epub
3) Author - Title .epub
Thanks in advance!
M
MRT: how correct unnecessary spaces in filenames
Moderators: sheep, Hacker, Stefan2, white
Re: MRT: how correct unnecessary spaces in filenames
Just properly fill fields "Search for" (type two spaces) and "Replace with" (type single space).
Regards from Poland
Andrzej P. Wozniak
Andrzej P. Wozniak
Re: MRT: how correct unnecessary spaces in filenames
Code: Select all
FROM:
Author1 - Title.epub
Author2 - Title.epub
Author3 - Title .epub
TO:
Author1 - Title.epub
Author2 - Title.epub
Author3 - Title.epub
Regular Expressions
Searchfor Space+Space(s)
Search: \s\s+
Replace with: SPACE
[x]RegEx
[Reload]
Search for Space+Dot
Search: \s\.
Replace with: .
[x]RegEx
As always, could have side effects too. For different problems you may use different solutions, not one-do-it-all.
Inofficial FAQs || WIKI (Deu/Eng) || TC Home (What's new? // FAQ // Download // Order // Addons // Tools // Plugins)
Erst wenn der letzte Baum gefällt oder die letzte Biene verendet ist, werden die Leute verstehen warum Umweltschutz wichtig ist.
Erst wenn der letzte Baum gefällt oder die letzte Biene verendet ist, werden die Leute verstehen warum Umweltschutz wichtig ist.
Re: MRT: how correct unnecessary spaces in filenames
Thanks, both of you, it worked!