如果我有一个字符串可能是:
'Hello (Test1 test2) (Hello1 hello2) other_stuff'
我想把它分成这样的东西:
split1='hello'
split2='Test1, test2'
split3='Hello1, hello2'
split4='other_stuff'
然后我将它放入一个变量中:
full_split=[split1, split2, split3, split4]
而且,如果他们继续在末尾添加单词,则未知字符串将继续添加拆分变量 ( split5
, split6
)
我正在研究正则表达式,但我不喜欢导入 python 不附带的模块。如果必须,我会的。