Difference between revisions of "Concatenation"

esse quam videri
Jump to: navigation, search
(Relevance)
Line 2: Line 2:
  
 
=Relevance=
 
=Relevance=
 +
*[[string]]
  
 
=Explanation=
 
=Explanation=

Revision as of 19:36, 19 June 2019

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