rustHow do I get a character from a string in Rust by its index?
You can get a character from a string in Rust by its index using the chars()
method. This method returns an iterator over the characters of a string.
Example code
let s = "Hello";
let c = s.chars().nth(1);
Output example
Some('e')
Code explanation
let s = "Hello"
: This declares a string variables
and assigns it the value"Hello"
.let c = s.chars().nth(1)
: This uses thechars()
method to get an iterator over the characters of the strings
. Thenth(1)
method is then used to get the character at the index1
from the iterator.
Helpful links
More of Rust
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to replace strings using Rust regex?
- How to get an entry from a HashSet in Rust?
- How to insert an element into a Rust HashMap if it does not already exist?
- Regex example to match multiline string in Rust?
- How to get a capture group using Rust regex?
- How to get all values from a Rust HashMap?
- How to modify an existing entry in a Rust HashMap?
- How to calculate the sum of a Rust slice?
See more codes...