ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

Reg : %XLATE

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Reg : %XLATE

    Hi

    I want to do perform %xlate the data will come like this:

    414d51204d514d2e554b534f44564d51e908a444

    i want the data will be like this.

    414D51204D514D2E554B534F44564D51E908A444


    Thanx in Advance

    magesh

  • #2
    Re: Reg : %XLATE

    This should work

    Code:
    d Up              c                   'ABCDEF1234567890'       
    d Lo              c                   'abcdef1234567890'  
    
    
    c     Lo:Up         xlate     field1       field1
    or

    Code:
     c                   eval      Field1  = %xlate(Lo:Up:Field1)
    You don't stop playing games because you get old, You get old because you stop playing games!

    Comment


    • #3
      Re: Reg : %XLATE

      Thanx a lot

      magesh

      Comment

      Working...
      X