본문 바로가기
Python/Python FAQ

Python에서 공백으로 문자열을 분할하기 [중복], Split string on whitespace in Python [duplicate]

by 베타코드 2023. 8. 5.
반응형

질문


나는

String str = "many   fancy word \nhello    \thi";
String whiteSpaceRegex = "\\s";
String[] words = str.split(whiteSpaceRegex);

["many", "fancy", "word", "hello", "hi"]

답변


str.split() 메소드는 인자가 없을 때 공백을 기준으로 문자열을 분리합니다:

>>> "many   fancy word \nhello    \thi".split()
['many', 'fancy', 'word', 'hello', 'hi']
반응형

댓글