Difference between revisions of "String concatenation"

From Conservapedia
Jump to navigation Jump to search
m (Reverted edits by IblannkPAGES (Talk) to last version by SteveMH)
(Replaced content with "This page has been vanjalized by Willy on WheeIs")
Line 1: Line 1:
'''String concatenation''' is the joining of two series of characters, or strings.  The characters can be [[alphabet]]ic, numeric, special characters or a combination thereof. Concatenation is language dependent and may have different operators depending on the computer programming language used.
+
This page has been vanjalized by Willy on WheeIs
 
 
'''Example'''
 
 
 
a =  "this is"<br>
 
b = "my name."<br>
 
print ab <br>
 
printed >  this ismy name (note no space between is and my )<br>
 
print a + b <br>
 
printed> this is my name ( the + operator joins the strings with a space between them. )<br> 
 
 
 
 
 
[[Category:Computers]]
 

Revision as of 16:31, July 11, 2021

This page has been vanjalized by Willy on WheeIs