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 replace a capture group using Rust regex?
- How to parse a file with Rust regex?
- How to match a URL with a regex in Rust?
- How to use regex lookbehind in Rust?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- How to match whitespace with a regex in Rust?
- How to replace all matches using Rust regex?
- Regex example to match multiline string in Rust?
- How to use regex with bytes in Rust?
See more codes...