Scilab 5.5.0
- Scilabヘルプ
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- 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
stripblanks
文字列の先頭または末尾の空白(およびタブ)を取り除く
呼び出し手順
txt=stripblanks(txt[,tabs])
パラメータ
- txt
文字列または文字列の行列 s
- tabs
TRUEの場合,タブも削除されます (デフォルト値は FALSE)
説明
stripblanks は文字列の先頭または末尾の空白(およびタブ)を取り除 きます.
例
a=' 123 '; '!'+a+'!' '!'+stripblanks(a)+'!' a=[' 123 ',' xyz'] strcat(stripblanks(a))
Report an issue | ||
<< strings | Strings | strncpy >> |