■ String 구조체 : split_whitespace 메소드를 사용해 공백 문자를 기준으로 문자열을 분리하는 방법을 보여준다.
▶ 예제 코드 (RS)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
use std::str; fn main() { let source_string : String = String::from("A B C D E"); let token_split_whitespace : str::SplitWhitespace = source_string.split_whitespace(); for token in token_split_whitespace { let token_trimmed : &str = token.trim(); println!("{}", token_trimmed); } } |