rustHow do you enumerate a Rust string?
A Rust string can be enumerated using the chars()
method. This method returns an iterator over the characters of the string.
let s = "Hello World";
for c in s.chars() {
println!("{}", c);
}
Output example
H
e
l
l
o
W
o
r
l
d
The chars()
method returns an iterator over the characters of the string. The iterator can then be used to iterate over the characters of the string. In the example above, the iterator is used in a for loop to print out each character of the string.
Helpful links
More of Rust
- How to parse JSON string in Rust?
- How to replace strings using Rust regex?
- Hashshet example in Rust
- How to use a custom hash function with a Rust HashMap?
- How to compile a regex in Rust?
- How to add matrices in Rust?
- How to get a value by key from JSON in Rust?
- How to convert struct to JSON string in Rust?
- How to filter a Rust HashMap?
- How to use regex lookbehind in Rust?
See more codes...