How to remove dots between words in file name?
How to remove dots between words in file name?
Hi All
please how to remove dots between words in file name with Everything?
Thanks in advance
please how to remove dots between words in file name with Everything?
Thanks in advance
Re: How to remove dots between words in file name?
That is:
- select your files
- press F2
- enable Regex
Old format:
(\.)(?=.*\.)
_\2
Re: How to remove dots between words in file name?
Thanks so much
But please which software you use?
I do not have this software that appear in attached screenshot?
keep in mind my prefer renamer app is Bulk Rename Utility.
Also I want to remove the dots and replace it with space only
Thanks again
But please which software you use?
I do not have this software that appear in attached screenshot?
keep in mind my prefer renamer app is Bulk Rename Utility.
Also I want to remove the dots and replace it with space only
Thanks again
Re: How to remove dots between words in file name?
Your original question, in the support section of the Everything forum:
So I gave you a way to do this in Everything. Just follow the instructions:
Instead of pressing F2 you can also choose Rename from the File-menu (Menu:File > Rename)
Re: How to remove dots between words in file name?
Thanks so much
Iam so sorry, I made misconception because the forum of Everything and Bulk Rename Utility have the same interface.
Its appear to me you are using certain software from attached screenshot to rename files because Iam not know that Everything can rename files because its primary function is searching.
without further ado,
My bro your code is working for me from (Everything --> File ---> Rename)
but please your code is remove dots anywhere which is not meet with what I want
I want to remove dots between words only (not numbers)
I have list of apps with dots between words in file name such as
Nitro.Pro.13.15.1.282.Ent_x64
Movavi.Photo.Editor.Repack.v4.4.0
NCH.PhotoPad.v6.13
Home.Photostudio.Repack.v16.0
Microsoft.NET.Core.Desktop.Runtime.v3.1.4_x64
So I want to remove dots between words to be such as
Movavi Photo Editor Repack v4.4.0 (I removed the dots manually)
Thanks for your consideration
Thanks for your time.
Iam so sorry, I made misconception because the forum of Everything and Bulk Rename Utility have the same interface.
Its appear to me you are using certain software from attached screenshot to rename files because Iam not know that Everything can rename files because its primary function is searching.
without further ado,
My bro your code is working for me from (Everything --> File ---> Rename)
but please your code is remove dots anywhere which is not meet with what I want
I want to remove dots between words only (not numbers)
I have list of apps with dots between words in file name such as
Nitro.Pro.13.15.1.282.Ent_x64
Movavi.Photo.Editor.Repack.v4.4.0
NCH.PhotoPad.v6.13
Home.Photostudio.Repack.v16.0
Microsoft.NET.Core.Desktop.Runtime.v3.1.4_x64
So I want to remove dots between words to be such as
Movavi Photo Editor Repack v4.4.0 (I removed the dots manually)
Thanks for your consideration
Thanks for your time.
Re: How to remove dots between words in file name?
Old:
New:
Type space symbol (ASCII 32) in field New
Code: Select all
(?<=[^\d])\.(?!\d)
Type space symbol (ASCII 32) in field New
Re: How to remove dots between words in file name?
Very nice!ovg wrote: ↑Sat May 23, 2020 12:02 pm Old:New:Code: Select all
(?<=[^\d])\.(?!\d)
Type space symbol (ASCII 32) in field New
I noticed that the "Nitro" file still had some dots in it: Nitro Pro.13.15.1.282.Ent_x64.txt, so I found myself an excuse to play a bit more with your idea:
Code: Select all
OLD:
(?<=[^\d])\.|\.(?!\d)(?=.*\.)
NEW:
<space><space>
Home Photostudio Repack v16.0.txt
Nitro Pro 13.15.1.282 Ent_x64.txt
Microsoft NET Core Desktop Runtime v3.1.4_x64.txt
Movavi Photo Editor Repack v4.4.0.txt
NCH PhotoPad v6.13.txt
Re: How to remove dots between words in file name?
Thanks so much (NotNull and ovg)
The code (?<=[^\d])\.(?!\d) work for me
Best Regards
The code (?<=[^\d])\.(?!\d) work for me
Best Regards
Re: How to remove dots between words in file name?
It seems that would be enough ...
Code: Select all
(?<=[^\d])\.
Re: How to remove dots between words in file name?
Thanks ovg
Iwill depend on this code (?<=[^\d])\.(?!\d) because it work for me
Best Regards
Iwill depend on this code (?<=[^\d])\.(?!\d) because it work for me
Best Regards
Re: How to remove dots between words in file name?
Sorry, it can't be:
Don't forget type space in the New field
Don't forget type space in the New field
Re: How to remove dots between words in file name?
look my bro this screenshot
https://ibb.co/7QX1BS3
It remove dots anywhere
I do not know why the code is work different for me
https://ibb.co/7QX1BS3
It remove dots anywhere
I do not know why the code is work different for me
Re: How to remove dots between words in file name?
What is version/bitness of your Ev?
Re: How to remove dots between words in file name?
Version 1.4.1.877 (x64)
Re: How to remove dots between words in file name?
The following worked for me:
Enable regex
Old format:
(\.)(?=.*\.)
New format:
_
where _ is a space.
Enable regex
Old format:
(\.)(?=.*\.)
New format:
_
where _ is a space.
Re: How to remove dots between words in file name?
It seems a bug in EV 887x64. 887x86 working fine ...
Re: How to remove dots between words in file name?
Thanks so much
Thanks for your time and consideration
Thanks for your time and consideration