Having Doubt on string conversion

How to change the string Upper case or lower case into Proper case?

1 Like

Hi @Mr.Bug_Maker

Try with this expression

StrConv("hello world", VbStrConv.ProperCase)

Regards
Gokul

1 Like

Hello @Mr.Bug_Maker

Try this

System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(“Your String”)

image

2 Likes

Hi @Mr.Bug_Maker

Another approach

System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(myString.ToLower())

Regards!

1 Like

System.Globalization.CultureInfo.CurrentCulture.TextInfo.To TitleCase(“SUDHA”) // Sudha

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.