cancel
Showing results for 
Search instead for 
Did you mean: 

formating of texts in scipts

Former Member
0 Kudos

hii frnds

can anybody give the list of formating technics in scipts

like removing gaps and zeroes

thanx

rohit

Accepted Solutions (1)

Accepted Solutions (1)

former_member193831
Active Participant
0 Kudos

hi Rohit,

For removing gaps, u can use &text(c)&

c- for condense

For removing leading zeroes use

&SYmbol(Z)&

&symbols+4& Offset

&symbol(I)& output nothing if symbol is initial

&Symbols(R)& Right justified output

&symbol(S)& Supress + - sign

Regards,

Vivek

Answers (1)

Answers (1)

Former Member
0 Kudos

Ignoring conversion rules: &symbol(K)&

Leading sign to the left: &symbol(<)&

Leading sign to the right: &symbol(>)&

Number of decimals: &symbol(.n)&

Offset: &symbol+n&

Omitting leading zeros: &symbol(Z)&

Omitting the leading sign: &symbol(S)&

Omitting the separator for “Thousands” : &symbol(T)&

Output length: &symbol(l)&

Right-justified output: &symbol(R)&

Space compression: &symbol(C)&

Suppressing initial values: &symbol(I)&