Scilab-Branch-6.1-GIT
- Scilab Help
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcspn
- strindex
- string
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
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
aligns strings in columns to the left, center, or right
Syntax
Tj = justify(S, position)
Arguments
- S
a matrix of character strings.
- Sj
a matrix of character strings. The justified result.
- position
Possible values:
'l' or 'left' : left justification 'c' or 'center' : centering 'r' or 'right' : right justification
Description
The justify
function justifies the column of a
matrix of string according to the given position
.
Examples
t=['1234','x','adfdfgdfghfgj' '1','354556','dgf' 'sdfgd','','sdfsf']; justify(t,'l') justify(t,'c') justify(t,'r')
See also
Report an issue | ||
<< isnum | Strings | length >> |