strings:TitleCase

Previous Next

Converts a value to its all-lowercase equivalent but with a capitalised first letter

Syntax

strings:TitleCase( value )

 

Example

select uscsxsl.blend(
  '<example xmlns:pc="Processing.Command" pc:hideme="true">
     <pc:assign-default val = "abcDEF"/>
     <pc:value-of select="strings:TitleCase($val)"/>
   </example>'
)

The result value is:

Abcdef

 

 

See also

strings:ToLower

strings:ToUpper