String: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Stubbed the article) |
||
Line 1: | Line 1: | ||
[[category:Variables]] | [[category:Variables]] | ||
'''Strings''' are extensions of the [[Char]]acter [[variable]]s. '''Strings''' allow the storage of text in memory. A typical length limit for a '''string''' is 255 [[char]]acters, but can be larger if necessary. However, larger '''strings''' use more memory, so the 255 character limit helps to better reserve and use memory for such common [[variable]]s. | '''Strings''' are extensions of the [[Char]]acter [[variable]]s. '''Strings''' allow the storage of text in memory. A typical length limit for a '''string''' is 255 [[char]]acters, but can be larger if necessary. However, larger '''strings''' use more memory, so the 255 character limit helps to better reserve and use memory for such common [[variable]]s. | ||
{{stub}} |
Revision as of 06:27, 15 July 2005
Strings are extensions of the Character variables. Strings allow the storage of text in memory. A typical length limit for a string is 255 characters, but can be larger if necessary. However, larger strings use more memory, so the 255 character limit helps to better reserve and use memory for such common variables.