toTitleCaseForList

Modified on Wed, 16 Aug 2023

Description

Convert each string in a list to proper case (title case)

Syntax

toTitleCaseForList(array)

Parameters

Input ParameterTypeDescription
arrayArrayThe list of input strings to convert

Return value

Type
Array

Sample

ExampleResultDescription
toTitleCaseForList(['this is a TITLE', 'BudGet'])['This Is A Title', 'Budget']The list of strings in proper case

To view all the List functions, click here.

See Also