- 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
strcat
文字列を結合する
呼び出し手順
txt = strcat(strings) txt = strcat(strings, string_added) txt = strcat(strings, string_added, "r") txt = strcat(strings, string_added, "c")
引数
- strings
文字列のベクトルまたは行列
- string_added
追加される文字列, デフォルト値は長さ0の文字列
""
- txt
文字列
- "e" | "c" flag
文字列 (
"r"
は 行列strings
の行の結合,"c"
は 行列strings
の列の結合)
説明
txt = strcat(strings)
は文字列を結合します:
txt = strings(1) + ... + strings(n)
.
txt = strcat(strings, string_added)
は,
txt = strings(1) + string_added + ... + string_added + strings(n)
を返します.
プラス記号の動作は同じです: "a"+"b"
は
strcat(["a","b"])
と同じです.
strings
の大きさが1の場合,
txt = strings(1)
を返します.
strcat('A','B')
は 'A'
を返し,
strcat(['A','B'])
のように'AB'
とはなりません.
strings
が文字列の行列の場合,
strcat(strings,"",'r')
は文字列の行ベクトルを返します.
この行ベクトルのエントリは行結合の毛化です.文字列の列ベクトルを返します.
この列ベクトルのエントリは列結合の結果です.
例
strcat(string(1:10),',') strcat(["a","b"]) strcat(["a","b"],'|') strcat('A') strcat('A','B') strcat(['A','B']) strcat(['A','B'],'') m =["a" "b" ; "c" "d"]; strcat(m, "r") strcat(m, "", "r") strcat(m, "", "c") strcat(m, "_and_", "r") strcat(m, "_and_", "c")
参照
- string — 文字列に変換
- strings — Scilabオブジェクト, 文字列
- strsplit — split a single string at some given positions or patterns
- brackets [] — Concatenation. Recipients of an assignment. Results of a function
Report an issue | ||
<< sci2exp | Strings | strchr >> |