external help file | Module Name | online version | schema |
---|---|---|---|
PSScriptTools-help.xml |
PSScriptTools |
2.0.0 |
Convert a string to title case.
ConvertTo-TitleCase [-Text] <String> [<CommonParameters>]
This command is a simple function to convert a string to title or proper case.
PS C:\> ConvertTo-TitleCase "working summary"
Working Summary
PS C:\> "art deco","jack frost","al fresco" | ConvertTo-TitleCase
Art Deco
Jack Frost
Al Fresco
Text to convert to title case.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.