Soudios
(Sou)
1
For this word : ''transition"
I need to have 3 variantes of this word "transition 
- transition (everything on lowercase)
- Transition (Juste the first letter on uppercase)
- TRANSITION (everything on uppercase letter)
Need to know how to write the sentence plz
Thank you
Yoichi
(Yoichi)
2
Hi,
Hope the following expressions help you.
Let’s say yourString =“transition”
transition :
yourString.ToLower()
Transition :
System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(yourString)
TRANSITION :
yourString.ToUpper()
Regards,
5 Likes
Soudios
(Sou)
3
This is it ! Thank you my friend ! 
1 Like
Soudios
(Sou)
4
oh sorry one thing again, i think it doesnt work with a long sentence :
VEUILLEZ SAISIR LE FILTRE SOUHAITÉ SVP
Yoichi
(Yoichi)
5
Hi,
Can you try the following?
System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase("VEUILLEZ SAISIR LE FILTRE SOUHAITÉ SVP".ToLower())
This returns Veuillez Saisir Le Filtre Souhaité Svp
Regards,
system
(system)
Closed
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.