5 lines
143 B
Text
5 lines
143 B
Text
fn main() {
|
|
let s = "Hello,How,Are,You,Today";
|
|
let tokens: Vec<&str> = s.split(",").collect();
|
|
println!("{}", tokens.join("."));
|
|
}
|