システム関数 StrLib.concatenate は、2 つのストリングを連結します。
StrLib.concatenate(
target a character type inOut,
source a character type in)
returns (result INT)
2 つのストリングを連結すると、以下のようになります。
phrase = "and/ "; // CHAR(7)
or = "or";
result =
StrLib.concatenate(phrase,or);
if (result == 0)
print phrase; // phrase = "and/or "
end
関連概念
EGL 関数の構文図
関連リファレンス
EGL ライブラリー StrLib