Component
Text Component
12 language-reference entries were extracted for this component.
- Fnd_Text_Base64ToText This function returns the ASCII text of the converted Base64 text. $tASCII_t:=Fnd_Text_Base64ToText (tSomeBase64Text_t)
- Fnd_Text_Capitalize 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...
- Fnd_Text_CapitalizeExclude The Fnd_Text_CapitalizeExclude method specifies the words that will not be capitalized using the Fnd_Text_Capitalize method. To get a list of words that will be excluded from...
- Fnd_Text_DecodeBase64Blob The Fnd_Text_DecodeBase64Blob method converts a blob from Base64 to ASCII. Fnd_Text_DecodeBase64Blob (->blob)
- Fnd_Text_EncodeBase64Blob The Fnd_Text_EncodeBase64Blob method converts a blob from ASCII text to Base64. If the optional line breaks is true, line breaks will be added to the blob. If the optional line...
- Fnd_Text_FormatNumber This function returns formatted string of the numeric string removing any dashes, "E"s, and periods. $formattednumber_t:=Fnd_Text_FormatNumber ("123.45", "$###.##")
- Fnd_Text_Info Returns the requested information about the component. $language_t:=Fnd_Text_Info (“language”)
- Fnd_Text_PadSpaces This function pads the passed text with spaces to reach the desired length. If the length of the text is greater than the length parameter, the text will be truncated....
- Fnd_Text_StripSpaces This function returns text with spaces removed. If options = 1, the function will remove only leading spaces. If options = 2, the function will remove only trailing spaces. If...
- Fnd_Text_TextToBase64 This function returns Base64 encoded text. $base64_t:=Fnd_Text_TextToBase64 (text_t)
- Fnd_Text_TextToMD5 This function returns MD5 message digest of the text parameter. See RFC 1321 for more information <http://www.faqs.org/rfcs/rfc1321.html>. $MD5message_t:=Fnd_Text_TextToMD5...
- Fnd_Text_Wrap This function returns text wrapped to the max line length. Routine by Marco Bernasconi <mbernasconi@ befund.com>. $wrappedtext_t:=Fnd_Text_Wrap (text_t; 78)