반응형
질문
나는
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']
반응형
댓글