프로그래밍 언어/Python

파이썬에서 공백을 기준으로 문자열을 list로 변환

Rateye 2021. 11. 18. 10:17
728x90
반응형
질문 : 파이썬에서 공백에 문자열 분할

나는 파이썬에 상응하는 것을 찾고 있어요

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']
출처 : https://stackoverflow.com/questions/8113782/split-string-on-whitespace-in-python
728x90
반응형