一尘不染

在Python中的空白处分割字串

python

我正在寻找相当于的Python

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

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

阅读 398

收藏
2020-02-22

共1个答案

一尘不染

str.split()不带参数的方法在空白处分割:

>>> "many   fancy word \nhello    \thi".split()
['many', 'fancy', 'word', 'hello', 'hi']
2020-02-22