システム関数 VGLib.concatenateBytes は、2 つのフィールドを連結します。
StrLib.concatenateBytes(
target 文字型です inOut,
source BIN、DECIMAL、NUM、NUMC、PACF、または文字型 in)
returns (result INT)
2 つの値を連結すると、以下のようになります。
phrase = "and/ "; // CHAR(7)
or = "or";
result =
VGLib.concatenateBytes(phrase,or);
if (result == 0)
print phrase; // phrase = "and/or "
end
関連概念
EGL 関数の構文図
関連リファレンス
concatenate()
EGL ライブラリー VGLib