반응형
나는 파이썬에 상응하는 것을 찾고 있어요
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
반응형
'파이썬' 카테고리의 다른 글
파이썬 pymongo로 mongodb를 정렬하는 방법 (0) | 2020.09.26 |
---|---|
파이썬 Python Itertools.Permutations () (0) | 2020.09.26 |
파이썬 특정 사용자 입력까지 반복 (0) | 2020.09.26 |
파이썬 Python 코드를 Arduino (Uno)로 "컴파일"하는 방법이 있습니까? (0) | 2020.09.26 |
파이썬 문자열 목록에서 모든 이스케이프 시퀀스를 제거하는 방법은 무엇입니까? (0) | 2020.09.26 |
댓글