Difference between revisions of "Working With String Data in Recital"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) (→Changing the Case of a String) |
Yvonnemilne (Talk | contribs) (→Working With String Data in Recital) |
||
Line 6: | Line 6: | ||
'''Table of Contents''' | '''Table of Contents''' | ||
− | * [[STRTOLOWER()]] - convert a string to lower case | + | * [[STRTOLOWER()|strtolower()]] - convert a string to lower case |
− | * [[STRTOUPPER()]] - convert a string to upper case | + | * [[STRTOUPPER()|strtoupper()]] - convert a string to upper case |
− | * [[UCFIRST()]] - convert a string to lower case with the first character of each word in upper case | + | * [[UCFIRST()|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=== | ||
Line 19: | Line 19: | ||
'''Table of Contents''' | '''Table of Contents''' | ||
− | * [[STRLEN()]] - return the numeric length of a string | + | * [[STRLEN()|strlen()]] - return the numeric length of a string |
===Converting a String Into an Array=== | ===Converting a String Into an Array=== |
Revision as of 11:02, 23 October 2009
Contents
- 1 Working With String Data in Recital
- 1.1 Changing the Case of a String
- 1.2 Converting to and from ASCII Values
- 1.3 Printing Formatted Strings in Recital
- 1.4 Recital printf Formatting Specifiers
- 1.5 Finding the Length of a Recital String
- 1.6 Converting a String Into an Array
- 1.7 Converting an Array into a String
- 1.8 String Conversion Functions
- 1.9 Removing Leading and Trailing Whitespace from a Recital String
- 1.10 Comparing Strings in Recital
- 1.11 String Comparison Functions Return Value
- 1.12 Accessing and Modifiying Characters in String
- 1.13 Searching for Characters and Substrings in a Recital String
- 1.14 Extracting and Replacing Substrings in Recital
- 1.15 Replacing All Instances of a Word in a Recital String
- 1.16 Miscellaneous String Functions
- 1.17 Summary
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
See Also
Table of Contents
- strlen() - return the numeric length of a string