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
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
python 단일 값에 대해 여러 변수를 테스트하는 방법 (0) | 2021.11.19 |
---|---|
프로젝트에서 모든 .pyc 파일을 제거하는 방법 (0) | 2021.11.19 |
Python에서 여러 구분 기호로 문자열 분할 (0) | 2021.11.18 |
characters 배열을 문자열로 변환 (0) | 2021.11.18 |
파이썬에서 __future__는 언제 어떻게 무엇에 사용해야 할까? (0) | 2021.11.17 |