SBM ModScript Reference → Programming SBM ModScript → Free Functions → Concatenation Operator
The &&& operator concatenates two values into a string.
string operator &&&( Variant v1 , Variant v2 ) string operator &&&( int v1 , Variant v2 ) string operator &&&( uint32_t v1 , Variant v2 ) string operator &&&( int64_t v1 , Variant v2 ) string operator &&&( uint64_t v1 , Variant v2 ) string operator &&&( double v1 , Variant v2 ) string operator &&&( string v1 , Variant v2 )
Parameter | Type | Description |
---|---|---|
v1 |
Variant int uint32_t int64_t uint64_t double string |
The first value to concatenate. |
v2 |
Variant |
The second value to concatenate. |
Type | Description |
---|---|
string |
The result of the concatenated values. |
SBM ModScript version: 11.3.
None.
Copyright © 2007–2018 Serena Software, Inc., a Micro Focus company. All rights reserved.