小编典典

在Python中的空格上拆分字符串

all

我正在寻找 Python 等价物

String str = "many   fancy word \nhello    \thi";
String whiteSpaceRegex = "\\s";
String[] words = str.split(whiteSpaceRegex);

["many", "fancy", "word", "hello", "hi"]

阅读 87

收藏
2022-03-07

共1个答案

小编典典

没有参数的str.split()方法在空格上拆分:

>>> "many   fancy word \nhello    \thi".split()
['many', 'fancy', 'word', 'hello', 'hi']
2022-03-07