Concatenation Meaning Code Example


Example 1: concatenation


"con" + "cat" + "e" + "nate"

Example 2: concatenation


the process of adding strings / chars together to make a larger string
ie:
String str = "cat";
Char letter = 's';
String newWord = str + letter;
==> newWord == "cats"

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools