-
Rust: Remove duplicate strs in String컴퓨터/Rust 2021. 7. 15. 18:33728x90반응형
Rust 중복된 문자열 제거하기
fn main() { let mut orig = "[hello] zzzzzz".to_string(); let a = "hello".to_string(); let dup = "[".to_string() + &a + "]"; if orig.contains(&dup) { println!("yes"); orig.replace_range((0..dup.len()), ""); } println!("{}", orig.trim()); } // yes // zzzzzz
직접 만들어서 효율은 아직 모름.
728x90'컴퓨터 > Rust' 카테고리의 다른 글
Rust: HTML 파싱하기 (crawling) (0) 2021.07.15 Rust 백엔드: REST API (Rocket + MySQL) (0) 2021.07.14 could not find native static library mysqlclient 오류 해결법 (0) 2021.07.10