1. ホーム
  2. python

[解決済み] Pythonで文字列を空白で分割する [重複]。

2022-03-17 03:10:07

質問

と同等のものをPythonで探しています。

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']