Scilab 5.3.1
      
      - Aide Scilab
 - Chaînes de caractères
 - eval
 - evstr
 - string
 - ascii
 - blanks
 - code2str
 - convstr
 - emptystr
 - grep
 - isalphanum
 - isascii
 - isdigit
 - isletter
 - isnum
 - justify
 - length
 - part
 - regexp
 - sci2exp
 - str2code
 - strcat
 - strchr
 - strcmp
 - strcmpi
 - strcspn
 - strindex
 - strings
 - stripblanks
 - strncpy
 - strrchr
 - strrev
 - strsplit
 - strspn
 - strstr
 - strsubst
 - strtod
 - strtok
 - tokenpos
 - tokens
 - tree2code
 
Please note that the recommended version of Scilab is 2026.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 | Chaînes de caractères | length >> |