For example:
String result;
String letter_a = "a";
String letter_b = "b";
String letter_c = "c";
We know it's easy to concatenate strings like result = letter_a + letter_b + letter_c
.
Currently, the value of the result
is "abc".
But what if I want to subtract letter_c
to result
like result = result - letter_c
. Will the result be result = "ab"
?