#1 : 07/01-22 12:18 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 |
#2 : 07/01-22 14:11 David Lee
Posts: 1125
|
Replace method...
Replace: ( ?.{2})[^ ]* with: \1 Occurrence: All Use regular expressions Note the spaces in the Replace pattern. |
#3 : 10/01-22 11:06 baboolec
Posts: 8
|
Reply to #2:
works perfectly, thank you |