-
[Python] text를 index해보자 module : rePython 2021. 11. 24. 22:00
import re text = "Let me grab a coffee real quick" match = re.search("grab", text) print(match) => <re.Match object; span=(7, 11), match='grab'> print(match.span()) => (7, 11) # 위치를 반환 Match = re.search("Hello World", text) print(Match) => None
import re split_term = "@" email = "user@gmail.com" print(re.split(split_term, email)) => ['user', 'gmail.com']
https://docs.python.org/ko/3/library/re.html
'Python' 카테고리의 다른 글
[Python] 함수의 arguments에 함수를 던져보자 (0) 2021.11.25 [Python] 지역변수들이 뭐가 있나 확인해보자 locals() (0) 2021.11.25 [Python] with문에 대해 알아보자 (실행과 종료) (0) 2021.11.24 [Python] 예외 처리를 해보자 try, except, else, finally (0) 2021.11.24 [Python] list에서 객체를 빼오자 pop (0) 2021.11.24