Uppercase letter?

Advanced Renamer forum
#1 : 25/03-20 20:42
Baki UÄŸur
Baki UÄŸur
Posts: 10
EN: I want to convert all letters to uppercase until the first space section. Is there anyone who can help?

TR: Ä°lk boÅŸluk bölümüne kadar tüm harfleri büyük harfe dönüÅŸtürmek istiyorum. Yardımcı olabilecek birisi var mı?


25/03-20 20:42
#2 : 25/03-20 23:18
David Lee
David Lee
Posts: 1125
Reply to #1:

You will need to use a script.

Try this:

name = item.name.match(/(.*?)( .*)/);
return name[1].toUpperCase() + name[2];


25/03-20 23:18