Scilab 5.3.3
- Scilab help
- Strings
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
justify
Justify character array.
Calling Sequence
Tj=justify(T,opt)
Arguments
- T
A matrix of character string.
- Tj
A matrix of character string. the justified result
- opt
A character option with possible values
- 'r'
or 'right' for right justification
- 'l'
or 'left' for left justification
- 'c'
or 'center' for centering justification
Description
justify
justify the column of a matrix of string accdording to
the given option.
Examples
t=['1234','x','adfdfgdfghfgj' '1','354556','dgf' 'sdfgd','','sdfsf']; justify(t,'l') justify(t,'c') justify(t,'r')
<< isnum | Strings | length >> |