only the first 2 letters of each word

Advanced Renamer forum
#1 : 07/01-22 12:18
baboolec
baboolec
Posts: 8
Hello. I would like to trim the file name leaving only the first 2 letters of each word. how to do it?

Fundacja 01 Preludium Fundacji
to
Fu 01 Pr Fu


07/01-22 12:18 - edited 07/01-22 12:21
#2 : 07/01-22 14:11
David Lee
David Lee
Posts: 1125
Replace method...

Replace: ( ?.{2})[^ ]*
with: \1
Occurrence: All
Use regular expressions

Note the spaces in the Replace pattern.


07/01-22 14:11
#3 : 10/01-22 11:06
baboolec
baboolec
Posts: 8
Reply to #2:
works perfectly, thank you


10/01-22 11:06