Convert to lowercase

Hi all,

How to I convert a string to lowercase?

I tried using culture but it keeps throwing me this error?
CultureInfo.CurrentCulture.TextInfo.ToTitleCase(firstDept)

I read and they say I have to import namespace, but which namespace do I need to import?

Thanks!

image

1 Like

hi @saraawq
You need to import namespace as System.Globalisation.CultureInfo
Check it and let us Know

Thanks
Ashwin S

1 Like

HI @saraawq

Check it in types and enter the value as CultureInfo

Thanks
Ashwin S

strvalue.ToLower()

Import namespace in the import tab System.Globalisation

Regards,
Arivu

3 Likes