Centering text in a file field

Centering text in a file field

Many times I have had the occasion to center text in file field for printing or displaying purposes. I now use the following RPG IV code to achieve this end.

 *
  * Declares
D Centered        S                   Like(Field) Inz
D X               S              3P 0 Inz
  *
  *
  * Center field
C                   Eval      X = (%Len(Field)-%Len(%Trim(Field)))/2+1
C                   Eval      %Subst(Centered:X) = Field
C                   Eval      Field              = Centered 
  *

In an ILE environment this can be made into a prototype in the following. This works for any size text up to a max of 1000 bytes. In the below example text is centered in a 50 byte field.

   
***********************************************************************
  ** The following prototype describes a procedure that centers text within 
a character field
  ** with a size of 1000 bytes or less.
  
***********************************************************************
  *
  * Centering procedure
D Center          PR          1000A
D   AnyText                   1000A   Const
D   AnyTextLen                   5U 0 Value
  *
  * Sample text to center
D  Text           S             50A   Inz('Center this text')
  *
  * Use of prototype to center text
C                   Eval      Text        = Center(Text:%Len(Text))
  *
  * Return program
C                   Return
  
***********************************************************************

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts including news, tips, and advice to help you do your job more efficiently and effectively. Stay informed on the hottest topics and biggest challenges faced by IT professionals working with iSeries products and services.

    By submitting your registration information to Search400.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of Search400.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

** Centering prototype *********************************************************************** P Center B Export D Center PI Like(Centered) D Field 1000A Const D FldLength 5U 0 Value * * Procedure variables D Centered S Like(Field) D ReturnCent S Like(Field) D X S 5U 0 Inz * * Calculate start position for centered text C Eval X = (FldLength- C %Len(%Trim(%Subst(Field:1:FldLength))))/2+1 * * Place the text into position C Eval %Subst(Centered:X) = C %Trim(%Subst(Field:1:FldLength)) * * Populate and return variable C Eval ReturnCent = Centered C Return ReturnCent * P Center E

This was first published in November 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.