在Python中的空格上拆分字符串
我正在寻找Python的等价物
String str = "many fancy word \nhello \thi";
String whiteSpaceRegex = "\\s";
String[] words = str.split(whiteSpaceRegex);
["many", "fancy", "word", "hello", "hi"]
繁星coding
牧羊人nacy
弑天下
相关分类