Concatenation

esse quam videri
Revision as of 19:36, 19 June 2019 by Pedro (talk | contribs) (Relevance)
Jump to: navigation, search

Definition

Relevance

Explanation

It is a way of making a new word (or String), by putting together two other strings.

Class Diagram

Example

Str1 + Str2 Result
"abc" + "def" "abcdef"
"abc" + "123" "abc123"
"123" + "abc" "123abc"
"123" + "123" "123123"
"40" + "0.17" "400.17"

Resources

See also

Notes

External Links