Text Component

Fnd_Text_Capitalize

Fnd_Text_Capitalize (text{; style}) -> Text

Legacy manual page 236

Parameters

ParameterTypeDescription
textTextText to capitalize
styleLongintCapitalization style (optional)
Function resultTextCapitalized text

Description

This function returns the capitalized text. If no optional style parameter is passed, Book Title capitalization is applied. If style parameter equals 2, the function will not use the excluded word list for capitalization. See Fnd_Text_CapitalizeExclude command.

$capitalized_t:=Fnd_Text_Capitalize ("please capitalize this phrase.")
Extracted source text
            Fnd_Text_Capitalize (text{; style}) ➜ Text

              Parameter                Type               Description
              text                     Text               Text to capitalize
              style                    Longint            Capitalization style (optional)
              Function result          Text               Capitalized text

            This function returns the capitalized text. If no optional style parameter is passed, Book Title
            capitalization is applied. If style parameter equals 2, the function will not use the excluded word list for
            capitalization. See Fnd_Text_CapitalizeExclude command.
              $capitalized_t:=Fnd_Text_Capitalize ("please capitalize this phrase.")