Difference between revisions of "Working With String Data in Recital"

From Recital Documentation Wiki
Jump to: navigation, search
 
(Changing the Case of a String)
Line 1: Line 1:
 
==Working With String Data in Recital==
 
==Working With String Data in Recital==
 
===Changing the Case of a String===
 
===Changing the Case of a String===
 +
 +
'''See Also'''
 +
 +
'''Table of Contents'''
 +
 +
* [[STRTOLOWER()]] - convert a string to lower case
 +
* [[STRTOUPPER()]] - convert a string to upper case
 +
* [[UCFIRST()]] - convert a string to lower case with the first character of each word in upper case
 +
 
===Converting to and from ASCII Values===
 
===Converting to and from ASCII Values===
 
===Printing Formatted Strings in Recital===
 
===Printing Formatted Strings in Recital===

Revision as of 15:17, 22 October 2009

Working With String Data in Recital

Changing the Case of a String

See Also

Table of Contents

  • STRTOLOWER() - convert a string to lower case
  • STRTOUPPER() - convert a string to upper case
  • UCFIRST() - convert a string to lower case with the first character of each word in upper case

Converting to and from ASCII Values

Printing Formatted Strings in Recital

Recital printf Formatting Specifiers

Finding the Length of a Recital String

Converting a String Into an Array

Converting an Array into a String

String Conversion Functions

Removing Leading and Trailing Whitespace from a Recital String

Comparing Strings in Recital

String Comparison Functions Return Value

Accessing and Modifiying Characters in String

Searching for Characters and Substrings in a Recital String

Extracting and Replacing Substrings in Recital

Replacing All Instances of a Word in a Recital String

Miscellaneous String Functions

Summary