mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
feat(solutions): add slugify/rust/function
This commit is contained in:
22
challenges/slugify/solutions/rust/function/src/main.rs
Normal file
22
challenges/slugify/solutions/rust/function/src/main.rs
Normal file
@ -0,0 +1,22 @@
|
||||
use std::io;
|
||||
|
||||
fn main() {
|
||||
let mut string = String::new();
|
||||
io::stdin()
|
||||
.read_line(&mut string)
|
||||
.expect("Failed to read `stdin` line.");
|
||||
let string = string.trim().trim_matches('-');
|
||||
let mut answer = String::new();
|
||||
let mut current = String::new();
|
||||
for (_, character) in string.chars().enumerate() {
|
||||
if character.is_whitespace() || (character == '-' && current.chars().count() > 0) {
|
||||
answer.push_str(¤t);
|
||||
answer.push('-');
|
||||
current.clear();
|
||||
} else if character.is_alphanumeric() {
|
||||
current.push(character);
|
||||
}
|
||||
}
|
||||
answer.push_str(¤t);
|
||||
println!("{answer}");
|
||||
}
|
Reference in New Issue
Block a user