在Python中的空白处分割字串

我正在寻找相当于的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']

以上是 在Python中的空白处分割字串 的全部内容, 来源链接: utcz.com/qa/404001.html

回到顶部