rustHow to join iterator of string in Rust
Joining an iterator of strings in Rust can be done using the join
method of the std::iter::Iterator
trait. This method takes a single argument, which is the separator string to be used between each string in the iterator. The following ## Code example shows how to join an iterator of strings using the join
method:
let strings = vec!["Hello", "World", "!"];
let joined_string = strings.iter().join(", ");
println!("{}", joined_string);
Output
Hello, World, !
Explanation:
let strings = vec!["Hello", "World", "!"];
: This line creates a vector of strings containing the elements "Hello", "World" and "!".let joined_string = strings.iter().join(", ");
: This line uses thejoin
method of thestd::iter::Iterator
trait to join the strings in the vector with the separator string ", ".println!("{}", joined_string);
: This line prints the joined string to the console.
Helpful links:
More of Rust
- Hashshet example in Rust
- How to convert Rust bytes to hex?
- How to convert a Rust HashMap to a JSON string?
- How to convert a Rust HashMap to JSON?
- How to get the last element of a Rust slice?
- How to use non-capturing groups in Rust regex?
- How to use groups in a Rust regex?
- How to match the end of a line in a Rust regex?
- How to escape dots with regex in Rust?
- How to use regex to match a group in Rust?
See more codes...