メインコンテンツ

plus, +

Requirements Table ブロックで string を連結する

R2022b 以降

説明

newStr = plus(str1,str2) は、string str1 と string str2 を連結します。この演算子は Requirements Table ブロックで使用します。

newStr = str1 + str2 は、newStr = plus(str1,str2) の代替の実行方法です。

すべて展開する

Requirements Table ブロックで、string "Hello," を string " world!" と連結する要件を作成します。出力は "Hello, world!" です。

y = plus("Hello,"," world!")

This example shows a requirement that appends the string "Hello," to the string " world!" with the plus operator. The output is "Hello, world!".

あるいは、+ を使用して 2 つの string を連結することもできます。

y = "Hello," + " world!"

This example shows a requirement that appends the string "Hello," to the string " world!" with +. The output is "Hello, world!".

入力引数

すべて展開する

入力 string。string スカラーとして指定します。リテラル文字列は二重引用符で囲みます。

例: "Hello"

データ型: string

出力引数

すべて展開する

出力 string。string スカラーとして返されます。

制限

  • この演算子では Simulink.Bus オブジェクト フィールドの使用はサポートされません。

バージョン履歴

R2022b で導入