다음 코드는 '축구 경기장의 치어 리더' 문자열 끝에 있는 '경기장'이라는 단어와 일치합니다.
$-문자열 끝과 일치
예시
import re s = 'cheer leaders at the football stadium' result = re.search(r'\w+$', s) print result.group()
출력
이것은 출력을 제공합니다.
stadium
다음 코드는 '축구 경기장의 치어 리더' 문자열 끝에 있는 '경기장'이라는 단어와 일치합니다.
$-문자열 끝과 일치
import re s = 'cheer leaders at the football stadium' result = re.search(r'\w+$', s) print result.group()
이것은 출력을 제공합니다.
stadium