Page 1 of 1

Remove blanks before the extension

PostPosted: Sat Apr 06, 2024 9:17 am
by torredipisa
Hi
Cannot understand how remove any blank char before the extension of a file.
For example: aaaaaaa .dng
I would reach: aaaaaaa.dng
Any suggestion?
Thank you very much.
Fabio

Remove ending space(s)

PostPosted: Sun Apr 07, 2024 12:42 am
by Luuk
Remove(5) can use "Trim" to remove any leading and/or trailing spaces.
Replace(3) could use a "Replace" like \end\ | (without really needing the "|").
RegEx(1) with a v2 checkmark needs a "Match" like \ +$ (without really needing the "\").