string Getting started with string

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

This section provides an overview of what string is, and why a developer might want to use it.

It should also mention any large subjects within string, and link out to the related topics. Since the Documentation for string is new, you may need to create initial versions of those related topics.

Versions

VersionRemarkRelease Date
ASCII String7 bit1963-06-17
UTF-88 bit default, variable length through surrogates1992-09-30
UCS-216 bit, like UTF-16 without surrogates, used my Microsoft Windows NT1993-07-23
UTF-1616 bit default, variable length through surrogates1996-07-31

Strings

A string is a sequence of character literals. To date, strings are supported by all modern programming languages,1 but there is no consensus between language designers on how strings should be classified. As far as programming language design is concerned there are two primary concerns to take into consideration.

  1. Should a string be treated as a primitive- or a composite value?
  2. What string operations should be provided by the language itself?2

By making a string a primitive value the string operations provided by the language are all built-in; and cannot be defined in the language itself. This allows certain optimizations at a compiler level — specifically with respect to memory layout and re-use of strings using a so called string pool. The trade-off lies in not being able to use drop in replacements for the string operations, and such functions would have to be called using normal function calls while the syntax for using built-in operations is usually distinctly different. The consequence being that if and when more effective algorithms are discovered one cannot simply change which string library one is using. A contrived example being having substring search as part of the core feature set before Boyer–Moore string search algorithm was developed.

Conversely, by defining a string to be a composite value such as an array of characters all the usual array operations become automatically applicable to strings. However, this results in all strings within the language as being fixed-length.3

Ultimately, another approach is representing strings as a list of characters which - as with arrays - allows the representation to inherit all list operations.

1 Save the more esoteric ones such as Piet
2 Languages usually offer string comparisons, primarily equality, concatenating strings with other strings, substituting single characters and substrings and lexographic sorting of strings. 3 Usually



Got any string Question?