write
write <format> <f> <options>.
用于格式化的各种子句
条款 | 说明 |
---|---|
left-justifled | 左对齐 |
centered | 居中 |
right-justifled | 右对齐 |
under<g> | 输出直接在字段<g>下启动 |
no-gap | 指定字符<f> 之后的空白被拒绝 |
using edit mask<m> | 表示格式模板<m>的规范。 |
no-zero | 如果字段只包含零,则对它们将被空格替换 |
数字类型字段的格式设置选项
用于格式化的各种子句
条款 | 说明 |
---|---|
NO-SIGN | 指定屏幕上不显示前导符号。 |
exponent | 指定在类型F(浮点字段)中,指数在<e>中定义 |
round<r> | 类型P字段首先乘以10 **(-r),然后四舍五入。 |
currency | 表示格式化是根据货币<c>值存储在TCURX数据库表中 |
unit<u> | 指定小数位数根据<u>单位,如类型P的T006数据库表中指定 |
decimals<d> | 指定数字的数目<d>必须显示在小数点后面 |
日期字段的不同格式设置选项
report ztest123_01.
data: n(9) type c value 'tutorials',
m(5) type c value 'point'.
write: n,m.
write: / n, / m under n.
write: / n no-gap,m.
data: time type t value '112538'.
write: / time,
/(8) time using edit mask '_:_:_'.
tutorials point
tutorials
point
tutorialspoint
112538
11:25:38