Remove Second word except initial.

Advanced Renamer forum
#1 : 10/07-19 11:36
Thomas Galloway
Thomas Galloway
Posts: 2
Hi

Thanks very much for any help

I was struggling to figure out how to remove all the lower case letters from a second word. This word is between a word that i do not want to alter and 6 numbers. For example.

Bloggs Joe 123456
Smith Johnathan 789101

I want this to change to

Bloggs J 123456
Smith J 789101

Thanks!


10/07-19 11:36
#2 : 10/07-19 21:32
David Lee
David Lee
Posts: 1125
Try Remove pattern....
Pattern: ^\w* [A-Z]\K[a-z]*
Use regular expressions


10/07-19 21:32