Scilab-Branch-6.1-GIT
- Scilabヘルプ
- 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
文字配列を整列
呼び出し手順
Tj = justify(T, position)
引数
- T
文字列の行列.
- Tj
文字列の行列. 揃えられた結果
- position
以下の値を指定できます:
'l'または'left' : 左揃え 'c'または'center' : 中央揃え 'r'または'right' : 右揃え
説明
justify
関数は,
指定したオプションposition
に基づき
文字列の行列の列を整列します.
例
t=['1234','x','adfdfgdfghfgj' '1','354556','dgf' 'sdfgd','','sdfsf']; justify(t,'l') justify(t,'c') justify(t,'r')
Report an issue | ||
<< isnum | Strings | length >> |