Skip to content

Instantly share code, notes, and snippets.

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