Difference between revisions of "String"

esse quam videri
Jump to: navigation, search
Line 4: Line 4:
  
 
=Relevance=
 
=Relevance=
Strings are a common data type that'll be used for information such as user input, names, adresses, etc.
+
Strings are a common data type that are used for information such as user input, names, descriptions, etc.
  
 
=Explanation=
 
=Explanation=
 
+
Concatenation can be used with strings to combine them together. Strings can also be converted into an array of characters.
  
  
Line 15: Line 15:
 
* [[Variable]]
 
* [[Variable]]
 
* [[Data Type]]
 
* [[Data Type]]
 +
*[[Concatenation]]
  
 
==Notes==
 
==Notes==

Revision as of 15:26, 31 July 2019

Definition

A string is a sequence of characters.

Relevance

Strings are a common data type that are used for information such as user input, names, descriptions, etc.

Explanation

Concatenation can be used with strings to combine them together. Strings can also be converted into an array of characters.


Resources

See also

Notes

External Links