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