Skip to main content

This documentation is for an older version of this product. See the latest version of this content.Opens in a new tab

連結演算子

連結演算子 (_) は、複数の文字列を単一の文字列に結合する場合に使用します。

ターミナル


USER>set a = "Interoperable", b = "Reliable", c = "Intuitive", d = "Scalable", e = " ", f = "IRIS:"

USER>set s = f _ e _ a _ e _ b _ e _ c _ e _ d

USER>write s
IRIS: Interoperable Reliable Intuitive Scalable
USER>
FeedbackOpens in a new tab