Last active
December 30, 2015 02:45
-
-
Save pdemby/86b90309ca46e1cda67f to your computer and use it in GitHub Desktop.
lowercase to UPPERCASE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IDENTIFICATION DIVISION. | |
PROGRAM-ID. UCASE2LCASE. | |
ENVIRONMENT DIVISION. | |
WORKING-STORAGE SECTION. | |
01 TEXT-STRING PIC X(25). | |
PROCEDURE DIVISION. | |
START-ROUTINE. | |
MOVE "this is a text string" TO TEXT-STRING. | |
INSPECT TEXT-STRING CONVERTING "abcdefghijklmnopqrstuvwxyz" | |
TO "ABCDEFGHIJKLMNOPQRSTUVWXYZ". | |
STOP RUN. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment