How to delete leading spaces/blank in COBOL ?
Example:- 01 data-name-1 pic x(220) " English is a
language".
I would like to delete leading spaces.
Answer Posted / minarul
you can do this by defining another varible with JUSTIFIED
RIGHT clause. then move the value from data-name-1 to that
varible. You have to define the picture clause of that
varible with proper length : below code will exactly do
that:
01 data-name-1 pic x(220) " English is a language".
01 CHR6 PIC X(217) JUSTIFIED RIGHT.
now do a move from data-name-1 to CHR6 and then disolay
the content of CHR6
Is This Answer Correct ? | 20 Yes | 33 No |
Post New Answer View All Answers
What is an in line perform? When would you use it? Anything else you wish to say about it.
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
Write a program that uses move corresponding.
How do you reference the fixed block file formats from cobol programs
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
Can we change the password using ALTER? anyone tried and changed?
Explain how you can characterize tables in cobol?
How you can read the file from bottom?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is the LINKAGE SECTION used in COBOL?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
What is the difference between goback, stop run and exit program in cobol?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
What are 77 levels used for?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?