Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

連結演算子

最初の文字列演算子は結合演算子 (_) です。これは単一の文字列に複数の文字列を結合します。

SAMPLES>set a = "license", b = "to", c = "speed", d = " ", e = "!"

SAMPLES>set s=a _ d _ b _ d _ c _ e

SAMPLES>write s
license to speed!
SAMPLES>
FeedbackOpens in a new tab