Using Substring you can convert the first character to upper case of a string. Let’s say your string is $leverancier:
$Leverancier = $Leverancier.substring(0,1).toupper()+$Leverancier.substring(1).tolower()
Using Substring you can convert the first character to upper case of a string. Let’s say your string is $leverancier:
$Leverancier = $Leverancier.substring(0,1).toupper()+$Leverancier.substring(1).tolower()