Difference between revisions of "Concatenation"

esse quam videri
Jump to: navigation, search
(Created page with "=Definition= =Relevance= =Explanation= Class Diagram =Resources= == See also == * Composite Formatting * Interpolated Formatting ==Notes== ==External Links==...")
 
Line 4: Line 4:
  
 
=Explanation=
 
=Explanation=
 +
It is a way of making a new word (or String), by putting together two other strings.
  
 
Class Diagram
 
Class Diagram
 +
 +
=Example=
 +
{| class="ConcatTable"
 +
!Str1
 +
!+
 +
!Str2
 +
!Result
 +
|-
 +
|"abc"
 +
| +
 +
|"def"
 +
|"abcdef"
 +
|-
 +
|"abc"
 +
| +
 +
|"123"
 +
|"abc123"
 +
|-
 +
|"123"
 +
| +
 +
|"abc"
 +
|"123abc"
 +
|-
 +
|"123"
 +
| +
 +
|"123"
 +
|"123123"
 +
|-
 +
|"40"
 +
| +
 +
|"0.17"
 +
|"400.17"
 +
|-
 +
|}
  
 
=Resources=
 
=Resources=

Revision as of 18:19, 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