Karaktersorokat
Karaktersorokat is the Hungarian term for character strings or character sequences. In computing, they are ordered sequences of characters used to store text. They vary in length, from empty to long, and may comprise letters, numbers, punctuation, or symbols from one or more writing systems.
Encoding: Internally, a string is represented as a sequence of code points (Unicode code points in modern
Operations: Common operations include length calculation, indexing to retrieve a character, slicing to extract substrings, concatenation
Applications: Strings are central to text processing, user input, data storage, file formats, programming language syntax,
Challenges: Unicode normalization forms (NFC, NFD) are used to combine diacritics and other marks; grapheme clusters
See also: string, character encoding, Unicode, grapheme, normalization, regular expressions.