Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Is it a function which is LPAD or RPAD like Oracle Command?

Former Member
0 Kudos

I have a problem.

I want to arrange in right.

Is it a function which is LPAD or RPAD like Oracle Command?

ex :

data : aaa(4).

aaa = 'T'

write aa

result : aa__

but I want

result : __aa

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

WRITE aa RIGHT-JUSTIFIED.

WRITE aa LEFT-JUSTIFIED.

WRITE aa CENTERED.

Pls. reward if useful...

1 REPLY 1

Former Member
0 Kudos

Hi,

WRITE aa RIGHT-JUSTIFIED.

WRITE aa LEFT-JUSTIFIED.

WRITE aa CENTERED.

Pls. reward if useful...