<< Prev        Next >>

ID : 778

String Display Formatting Character

String display formatting character is a character to specify display format used in Format function.

Character(s) Description
@ Use this character to display a character or a space. If there is a character at the position corresponding to @ (at mark) in the conversion target expression, the character will be displayed. If there is no character, a space will be displayed. As long as there is no display formatting character ! (exclamation mark) in the specified format of the argument format, @ will be filled in from right to left.
& Use this character to display a character. If there is a character at the position corresponding to & (ampersand) in the conversion target expression, the character will be displayed. If there is no character, gaps among characters will be filled without displaying any new character. As long as there is no display formatting character ! (exclamation mark) in the specified format of the argument format, & will be filled in from right to left.
< Change character(s) to lowercase. All characters will be converted to lowercase.
> Change character(s) to uppercase. All characters will be converted to uppercase.
! Use this character to fill characters in from left to right (not from right to left). When you don't use this character, characters will be filled in from right to left.

ID : 778

<< Prev        Next >>