Last active
August 29, 2015 14:16
-
-
Save pdemby/3eb45efd67d5a8f7c2b4 to your computer and use it in GitHub Desktop.
UPPERCASE to lowercase
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