greetings..
i wanna do some filenames cleanup to a list of 3000+ of missy named files if anyone can help or advice..
i want to remove all "emojis characters" in one step if possible !!
and also remove any weird characters other than letters, numbers, spaces, and underscores, note that files names has a mandatory "non latin letters"..
and finally and wanna trim duplicated characters like the double or triple spaces or dashes or underscores like these..
"..." and " ---" and "___"..
any help is appreciated and thank you.
[help] how to remove all emojis from filenames in advanced rename ??
Re: [help] how to remove all emojis from filenames in advanced rename ??
- Search for:asamirid wrote: Fri Feb 14, 2025 2:14 pm i want to remove all "emojis characters" in one step if possible !!
Code: Select all
file: regex:[\x{1F300}-\x{1F6FF}\x{1F900}-\x{1F9FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]
- Press F2 to rename them
- Uncheck all checkboxes
- Check Regular expressions
- Old Format:
[\x{1F300}-\x{1F6FF}\x{1F900}-\x{1F9FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]
- New Format: leave empty
- Check New filenames
- If all as expected, press the OK button.
- For multiple spaces, search for:asamirid wrote: Fri Feb 14, 2025 2:14 pm and finally and wanna trim duplicated characters like the double or triple spaces or dashes or underscores like these..
"..." and " ---" and "___"..
Code: Select all
file: regex:" {2,}"
- Press F2 to rename them
- Uncheck all checkboxes
- Check Regular expressions
- Old Format:
{2,}
- New Format:
- Check New filenames
- If all as expected, press the OK button.
- For multiple underscores, search for:
Code: Select all
file: regex:"_{2,}"
- Press F2 to rename them
- Uncheck all checkboxes
- Check Regular expressions
- Old Format:
_{2,}
- New Format:
_
- Check New filenames
- If all as expected, press the OK button.
I'm not sure what you mean by that. Please specify further, including some examples.asamirid wrote: Fri Feb 14, 2025 2:14 pm and also remove any weird characters other than letters, numbers, spaces, and underscores, note that files names has a mandatory "non latin letters"..
Re: [help] how to remove all emojis from filenames in advanced rename ??
thank you @NotNull for the help,NotNull wrote: Fri Feb 14, 2025 3:36 pmCode: Select all
file: regex:[\x{1F300}-\x{1F6FF}\x{1F900}-\x{1F9FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]
please explain this regex code to me, iam familiar with regex codes in general, but this one is not clear to me.
Re: [help] how to remove all emojis from filenames in advanced rename ??
like this example.."H , EL&NotNull wrote: Fri Feb 14, 2025 3:36 pmI'm not sure what you mean by that. Please specify further, including some examples.asamirid wrote: Fri Feb 14, 2025 2:14 pm and also remove any weird characters other than letters, numbers, spaces, and underscores, note that files names has a mandatory "non latin letters"..
this is a filename with english and arabic characters, special characters ", & @", and emojis.
i want to remove the special characters like ", & @" and the emojis "
and keep the english and arabic characters.
Re: [help] how to remove all emojis from filenames in advanced rename ??
For emojis see previous answer. The rest, same priciple as before:asamirid wrote: Fri Feb 14, 2025 4:58 pm i want to remove the special characters like ", & @" and the emojis
- Search for regex:[,&@]
- Old Format: [,&@]
- New Format: (empty)
The "emojis-regex" are Unicode character ranges that contain emoji characters.