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


Please Help Members By Posting Answers For Below Questions

What is an in line perform? When would you use it? Anything else you wish to say about it.

821


How to traceback if I am getting SOC7 or SOC4 abend? List down the steps

5068


Write a program that uses move corresponding.

859


How do you reference the fixed block file formats from cobol programs

900


What are INPUT PROCEDURE and OUTPUT PROCEDURE?

910






Can we change the password using ALTER? anyone tried and changed?

1733


Explain how you can characterize tables in cobol?

804


How you can read the file from bottom?

862


What is the default value(s) for an initialize? What keyword will allow for an override of the default?

851


What is the LINKAGE SECTION used in COBOL?

1170


if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need

1051


What is the difference between goback, stop run and exit program in cobol?

1214


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

1200


What are 77 levels used for?

838


How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?

942