Speaking of Y2K-related programs, I too wrote one, but it searched the
VLIST of the program. That way I didn't care about spacing, etc..  You
might find that method helpful.

For example, these 4 source lines compile to the same PCODE:

>VLIST CDS.BP MARK

00001: NBR = NBR "5'0'R"
00001 00000 : 09C format         NBR "5'0'R"  => NBR 

00002: NBR=NBR"5'0'R"
00002 00008 : 09C format         NBR "5'0'R"  => NBR 

00003: NBR = NBR \5'0'R\
00003 00010 : 09C format         NBR "5'0'R"  => NBR 

00004: NBR = NBR "5'0'R"
00004 00018 : 09C format         NBR "5'0'R"  => NBR 

00005: NBR = FMT( NBR, "5'0'R" )
00005 00020 : 09C format         NBR "5'0'R"  => NBR 
00006 00028 : 190 stop           



-----Original Message-----
From: Mark Johnson
... This reminds me of the Y2K reviews I had to apply in 1998-1999
before the sky fell.
I wrote a program who's concept may help in this pursuit...
----- Original Message -----
From: "Barry Brevik" <[EMAIL PROTECTED]>
>   NBR = NBR "5'0'R"
>
>     or
>
>   NBR = NBR"5'0'R"
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to