러스트에서 문자열을 저장하는 String에 다른 문자나, 문자열을 마지막에 추가하는 방법에 대해서 알아보겠습니다.
1. String 끝에 문자열 추가하기
String.push_str(string)
은 문자열 끝에 string을 추가합니다.
아래와 같이 문자열에 다른 문자열들을 추가할 수 있습니다.
fn main() {
let mut text = String::from("Hello,");
text.push_str(" World,");
text.push_str(" Rust!");
println!("{}", text);
}
Output:
Hello, World, Rust!
str, String 객체로 문자열 추가하기
push_str()
는 인자로 str 타입을 받습니다. 즉, String을 직접 전달할 수는 없기 때문에, String 객체로 문자열을 추가하고 싶다면 as_str()
함수로 String을 str로 변환해서 사용해야합니다.
fn main() {
let mut text: String = String::from("Hello,");
let text2: String = String::from(" World,");
let text3: &str = " Rust!";
text.push_str(text2.as_str());
text.push_str(text3);
println!("{}", text);
}
Output:
Hello, World, Rust!
2. String 끝에 문자 1개 추가
String.push(char)
는 문자열 끝에 문자 1개, char 값을 추가합니다.
아래와 같이 문자열 끝에 문자 1개를 추가할 수 있습니다.
fn main() {
let mut text = String::from("Hello,");
text.push(' ');
text.push('W');
text.push('o');
text.push('r');
text.push('l');
text.push('d');
println!("{}", text);
}
Output:
Hello, World
Loading script...
Related Posts
- Rust - String을 char 리스트(Vector)로 변환
- Rust - 문자가 대문자인지 소문자인지 확인
- Rust - String에서 줄바꿈(newline) 문자 제거 방법
- Rust - String 대문자, 소문자 변환
- Rust - 현재 시간 가져오기 (DateTime, chrono)
- Rust - 예외 처리 방법 (Exception handling)
- Rust - String.find()으로 문자열 Index 찾기
- Rust - match (Switch) 사용 방법
- Rust - Vector의 요소 제거 방법 (remove, retain, drain)
- Rust - String의 특정 Index 값 가져오기
- Rust - 문자열 뒤집기, 역순으로 변경
- Rust - String 객체에 문자열 추가하기
- Rust - sleep(), 몇 초 지연/대기 방법
- Rust - String을 Int, Float으로 변환
- Rust - Integer를 String으로 변환
- Rust - Float를 String으로 변환
- Rust - String 비교 방법 (==, !=, eq, ne)
- Rust - String을 str으로, str을 String으로 변환
- Rust - String 공백 제거 (trim, replace)
- Rust - 2개의 배열이 같은지 비교 (==, equals)
- Rust - 배열 길이 가져오기 (Array length)
- Rust - Vector를 배열로 변환 (vector to array)
- Rust - 배열의 최소, 최대 값 찾기 (min, max)
- Rust - 배열의 합계, 평균 (sum, average)
- Rust - 2개의 Vector가 같은지 비교 (==, equals)
- Rust - HashMap을 Vector로 변환
- Rust - Vector의 최소, 최대 값 찾기 (min, max)
- Rust - Vector의 합계, 평균 (sum, average)
- Rust - 벡터 길이 가져오기 (Vector length)
- Rust - 배열을 HashSet으로 변환
- Rust - 배열을 벡터로 변환하는 방법
- Rust - 배열(벡터) 모든 요소 출력
- Rust - 배열 나누기, 자르기 (split_at, slice)
- Rust - 2개 벡터 하나로 합치기
- Rust - HashSet을 Vector로 변환