본문 바로가기
파이썬

파이썬에서 공백에 문자열 분할

by º기록 2020. 9. 26.
반응형

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

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

 

 

반응형

댓글