hi,
can anybody tell me how to connect 2 string in COBOL, thx.
ex:
05 WS-TEXT PIC X(15) VALUE " The total count is: ".
05 ws-count pic 9(5) value 0.
05 WS-result-message PIC x(20) value space.
can i use the idea or you have better idea, thax.
move ws-text TO WS-result-message(1:15)
MOVE WS-count TO WS-result-message(16:)