#1 : 25/03-20 20:42 Baki UÄŸur
Posts: 14
|
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ı? |
#2 : 25/03-20 23:18 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]; |