SeouliteLab

[Python/파이썬] String strip(), rstrip(), lstrip() 사용 방법 및 예제 본문

프로그래밍

[Python/파이썬] String strip(), rstrip(), lstrip() 사용 방법 및 예제

Seoulite Lab 2024. 3. 6. 10:04

Python의 문자열 메서드 중 strip(), rstrip(), lstrip()은 문자열의 양쪽 끝, 오른쪽 끝, 왼쪽 끝에 있는 공백 문자를 제거하는 데 사용됩니다. 이들 메서드는 문자열을 수정하지 않고 새로운 문자열을 반환합니다.

1. strip()

strip() 메서드는 문자열의 양쪽 끝에 있는 모든 공백 문자를 제거합니다. 공백 문자로는 스페이스, 탭, 개행 문자 등이 포함됩니다.

text = "   Hello, World!   "
stripped_text = text.strip()
print(stripped_text)  # 출력 결과: "Hello, World!"

2. rstrip()

rstrip() 메서드는 문자열의 오른쪽 끝에 있는 공백 문자를 제거합니다. 문자열의 끝에서부터 시작하여 공백 문자를 찾아 제거합니다.

text = "   Hello, World!   "
right_stripped_text = text.rstrip()
print(right_stripped_text)  # 출력 결과: "   Hello, World!"

3. lstrip()

lstrip() 메서드는 문자열의 왼쪽 끝에 있는 공백 문자를 제거합니다. 문자열의 시작부터 시작하여 공백 문자를 찾아 제거합니다.

text = "   Hello, World!   "
left_stripped_text = text.lstrip()
print(left_stripped_text)  # 출력 결과: "Hello, World!   "

4. strip() 활용 예제

strip() 메서드를 사용하여 문자열에서 숫자와 문자열을 분리합니다.

text = "abc123def456ghi"
numbers = text.strip("abcdefghijklmnopqrstuvwxyz")
letters = text.strip("1234567890")
print(numbers)  # 출력 결과: "123456"
print(letters)  # 출력 결과: "abc123defghi"

5. rstrip() 활용 예제

rstrip() 메서드를 사용하여 문자열에서 오른쪽 끝의 특정 문자를 제거합니다.

text = "Hello, World!!!"
cleaned_text = text.rstrip("!")
print(cleaned_text)  # 출력 결과: "Hello, World"

6. lstrip() 활용 예제

lstrip() 메서드를 사용하여 문자열에서 왼쪽 끝의 특정 문자를 제거합니다.

text = "!!!Hello, World"
cleaned_text = text.lstrip("!")
print(cleaned_text)  # 출력 결과: "Hello, World"