You copied the Doc URL to your clipboard.
String manipulation operators
You can use string manipulation operators to concatenate two strings, or to extract a substring.
The following table shows the string manipulation operators. In CC
, both
A
and B
must be strings. In the slicing operators
LEFT
and RIGHT
:
A
must be a string.B
must be a numeric expression.
Table 12-4 String manipulation operators
Operator |
Usage |
Explanation |
---|---|---|
|
|
B concatenated onto the end of A |
|
|
The left-most B characters of A |
|
|
The right-most B characters of A |