>>> re.split("[.+!]", "this.is++++a!string") ['this', 'is', '', '', '', 'a', 'string']
['this', 'is', 'a', 'string']
>>> re.split("[.+!]", "this.is++++a!string") ['this', 'is', '', '', '', 'a', 'string']
['this', 'is', 'a', 'string']
>>> re.split("[.+!]+", "this.is++++a!string")
>>> [s for s in re.split("[.+!]", "this.is++++a!string") if s]
filter(bool, re.split("[.+!]", "this.is++++a!string"))
Doberman26rusА чем вариант ziro не нравится?
То есть, регулярным выражением это никак нельзя сделать?
ziro>>> re.split("[.+!]+", "this.is++++a!string")
reclosedevНравится=)
А чем вариант ziro не нравится?