UprC$: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
m (moved UPRC$ to UprC$ over redirect)
No edit summary
 
Line 1: Line 1:
UPRC$(<string>)


The '''Uprc$''' [[internal function]] converts any lowercase letters in the string A$ to uppercase letters.
The '''Uprc$''' [[internal function]] converts any lowercase letters in the string A$ to uppercase letters.

Latest revision as of 03:19, 22 May 2014

UPRC$(<string>)

The Uprc$ internal function converts any lowercase letters in the string A$ to uppercase letters.

Comments and Examples

00010 LET A$ = "Business Rules "
00020 PRINT UPRC$(A$)

Line 20 will print: BUSINESS RULES

Related Functions

See the LwrC$ function for conversion from uppercase to lowercase.

Technical Considerations

  1. Another method for conversion to uppercase is the CU, VU and GU format specifications, which are effective only with INPUT FIELDS and RINPUT FIELDS. This method converts keystrokes, as they are being entered, into uppercase only. See also the CL Format Specification, VL Format Specification and GL Format Specification format specifications for more information about converting incoming keystrokes to lowercase.