admin管理员组

文章数量:1345087

I try to compare two fields in COBOL after using the intrinsic functions upper-case and trim.

When I compare these two fiels without moving the result into new fields the compare says the fields are equal though they are not, e.g. "Wert1" <> "wert1 x" as in my example.

Why does the compare works as I expect when I use fields but not when I use the intrinsic functions directly?

example program:

       program-id. tintr.
       data division.
       working-storage section.

       01  ws-feld1   pic x(10).
       01  ws-feld2   pic x(10).
       01  ws-feld3   pic x(10).
       01  ws-feld4   pic x(10).

       procedure division.

           move "Wert1 " to ws-feld1
           move "wert1 x" to ws-feld2
      *
           display "<" function upper-case(ws-feld1) ">"
           display "<" function upper-case(ws-feld2) ">"
      *
           display "<" function trim(ws-feld1) ">"
           display "<" function trim(ws-feld2) ">"
      *
           display "<" function upper-case
           (function trim(ws-feld1)) ">"
           display "<" function upper-case
           (function trim (ws-feld2)) ">"
      * Compare WS-Feld1/WS-Feld2
           if ws-feld1 = ws-feld2
           then
              display " felder1-2 identical"
           else
              display " felder1-2 not identical"
           end-if
      * Compare Functions uppercase/Trim
           if function upper-case
           (function trim(ws-feld1))
           =
            function upper-case
           (function trim(ws-feld2))
           then
              display " felder1-2/function identical"
           else
              display " felder1-2/function not identical"
           end-if
      * moving result of functions into field
           move function upper-case
           (function trim(ws-feld1))
           to ws-feld3
           
           move function upper-case
           (function trim(ws-feld2))
           to ws-feld4
      * Compare WS-Feld3/WS-Feld4
           if ws-feld3 = ws-feld4
           then
              display " felder3-4 identical"
           else
              display " felder3-4 not identical"
           end-if
      *

           stop run.

      *

This is the result:

<WERT1     >
<WERT1 X   >
<Wert1>
<wert1 x>
<WERT1>
<WERT1 X>
felder1-2 not identical
felder1-2/function identical
felder3-4 not identical

What I didn't expect is the result "felder1-2/function identical":

Any explanations for this behaviour?

I try to compare two fields in COBOL after using the intrinsic functions upper-case and trim.

When I compare these two fiels without moving the result into new fields the compare says the fields are equal though they are not, e.g. "Wert1" <> "wert1 x" as in my example.

Why does the compare works as I expect when I use fields but not when I use the intrinsic functions directly?

example program:

       program-id. tintr.
       data division.
       working-storage section.

       01  ws-feld1   pic x(10).
       01  ws-feld2   pic x(10).
       01  ws-feld3   pic x(10).
       01  ws-feld4   pic x(10).

       procedure division.

           move "Wert1 " to ws-feld1
           move "wert1 x" to ws-feld2
      *
           display "<" function upper-case(ws-feld1) ">"
           display "<" function upper-case(ws-feld2) ">"
      *
           display "<" function trim(ws-feld1) ">"
           display "<" function trim(ws-feld2) ">"
      *
           display "<" function upper-case
           (function trim(ws-feld1)) ">"
           display "<" function upper-case
           (function trim (ws-feld2)) ">"
      * Compare WS-Feld1/WS-Feld2
           if ws-feld1 = ws-feld2
           then
              display " felder1-2 identical"
           else
              display " felder1-2 not identical"
           end-if
      * Compare Functions uppercase/Trim
           if function upper-case
           (function trim(ws-feld1))
           =
            function upper-case
           (function trim(ws-feld2))
           then
              display " felder1-2/function identical"
           else
              display " felder1-2/function not identical"
           end-if
      * moving result of functions into field
           move function upper-case
           (function trim(ws-feld1))
           to ws-feld3
           
           move function upper-case
           (function trim(ws-feld2))
           to ws-feld4
      * Compare WS-Feld3/WS-Feld4
           if ws-feld3 = ws-feld4
           then
              display " felder3-4 identical"
           else
              display " felder3-4 not identical"
           end-if
      *

           stop run.

      *

This is the result:

<WERT1     >
<WERT1 X   >
<Wert1>
<wert1 x>
<WERT1>
<WERT1 X>
felder1-2 not identical
felder1-2/function identical
felder3-4 not identical

What I didn't expect is the result "felder1-2/function identical":

Any explanations for this behaviour?

Share Improve this question edited yesterday Simon Sobisch 7,3721 gold badge20 silver badges40 bronze badges asked yesterday UlrichHUlrichH 235 bronze badges New contributor UlrichH is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 4
  • 1 What COBOL compiler do you use? Note: I've added a final stop run and missing divisions/sections to convert your example to a minimal reproducing program - which does not reproduce the problem you have... – Simon Sobisch Commented yesterday
  • Thanks for your effort! We are using Visual COBOL for Eclipse 9.0 Version 9.0.00179, Update level PU 06 – UlrichH Commented yesterday
  • 1 I can confirm that this is a bug with your compiler, existing for quite some time - see my updated answer. If it "works for you", please accept and upvote,. – Simon Sobisch Commented yesterday
  • Thanks again, we decided to solve the problem by using a program-local- data-item. – UlrichH Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 4

Answer: your example program (I've edited the original snipped to a complete program and applied English translation) is fine, you found a bug in your COBOL compiler (likely related to how intermediate results of functions are cached) [I've verified that bug in VC7 and VC9].

Testing the example program with GnuCOBOL and GCC-COBOL at https://cobol.godbolt./z/1noYo59cY resulted in all of the compiler versions with the expected

 felder1-2 not identical
 felder1-2/function not identical
 felder3-4 not identical

which is also the result the ISO COBOL 2002+ standard would expect.

Possible solutions:

  • workaround: always use program-local data-items for any intermediate function result
  • contact your vendor support for a fix, after all that version costs big $$$
  • move to free COBOL without that bug :-)

本文标签: trimComparing fields after using intrinsic functions in COBOLStack Overflow