String is a sequence of symbols. All of the symbols can be accessed via their indexes starting from 0.
Let's say we have the string "computer". It's structure is the following:
So if we need to print the first letter (c) and the 3rd letter (m), we do:
Output:
Length is the count of the symbols contained in a string.
It's accessed via the Length
property.
Example:
Output:
Via Length
we can access the last symbol of a string.
Example:
Output:
Accessing string outside of it's bounds results in exception.
Let's look the following example:
The string has indexes from 0 to 4. Accessing index outside of that bound (in this case 5) causes exception.
We can check if string is contained in a string via the Contains
function.
Examples:
Output:
All symbols of a string can be iterated via for loop.
Let's print all letters of a word that are not vowels:
Output:
In this case !vowels.Contains(letterToString)
means that
letterToString
is a symbol that's not a vowel letter.