I've one string with spaces ( I N D I A ). My question is I
want remove the spaces & combine in to single string without
space (INDIA).How we can write the cobol program & wich
options we need to use. Please let me know.
Answer Posted / ashwani
With the help of Unstring delimited by ' ' , you can do so
Please correct me if i am wrong............
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
What the difference is between continue and next sentence?
What is the difference between perform … with test after and perform … with test before?
In COBOL programming, what is PERFORM? What is VARYING?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
Describe the cobol database components?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
What is length is cobol?
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
what are decleratives in cobol?
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
Write the code to count the sum of n natural numbers.
For rewrite, why is it mandatory that file needs to be opened?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.