OCLOperators concat
This page was created by Stephanie on 2023-05-03. Last edited by Edgar on 2025-01-20.
concat ( s : String ) : String
Returns a string containing self followed by *s*.
Expression | Result |
---|---|
'concat'.concat(' ').concat('operation') | 'concat operation' |