mirror of https://github.com/mahmoud/boltons.git
update split() docs with more examples.
This commit is contained in:
parent
a404fdd212
commit
376c3f3de9
|
@ -11,8 +11,12 @@ def is_scalar(obj):
|
||||||
|
|
||||||
def split(src, sep=None, maxsplit=None):
|
def split(src, sep=None, maxsplit=None):
|
||||||
"""
|
"""
|
||||||
Splits an iterable based on a separator, see split_iter
|
Splits an iterable based on a separator.
|
||||||
docs below for more info.
|
|
||||||
|
>>> split(['hi', 'hello', None, None, 'sup', None, 'soap', None])
|
||||||
|
[['hi', 'hello'], ['sup'], ['soap']]
|
||||||
|
|
||||||
|
See split_iter docs below for more info.
|
||||||
"""
|
"""
|
||||||
return list(split_iter(src, sep, maxsplit))
|
return list(split_iter(src, sep, maxsplit))
|
||||||
|
|
||||||
|
@ -26,13 +30,18 @@ def split_iter(src, sep=None, maxsplit=None):
|
||||||
split_iter yields lists of non-separator values. A separator will
|
split_iter yields lists of non-separator values. A separator will
|
||||||
never appear in the output.
|
never appear in the output.
|
||||||
|
|
||||||
Note that split_iter is based on str.split(), so if sep is None,
|
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None, 'soap', None]))
|
||||||
str.split() "groups" separators check the str.split() docs
|
|
||||||
for more info.
|
|
||||||
|
|
||||||
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None, 'soap', None])
|
|
||||||
[['hi', 'hello'], ['sup'], ['soap']]
|
[['hi', 'hello'], ['sup'], ['soap']]
|
||||||
|
|
||||||
|
Note that split_iter is based on str.split(), so if 'sep' is None,
|
||||||
|
split() "groups" separators. If empty lists are desired between two
|
||||||
|
contiguous None values, simply use sep=[None].
|
||||||
|
|
||||||
|
>>> list(split_iter(['hi', 'hello', None, None, 'sup', None], sep=[None]))
|
||||||
|
[['hi', 'hello'], [], ['sup'], []]
|
||||||
|
|
||||||
|
Using a callable separator:
|
||||||
|
|
||||||
>>> falsy_sep = lambda x: not x
|
>>> falsy_sep = lambda x: not x
|
||||||
>>> list(split_iter(['hi', 'hello', None, '', 'sup', False], falsy_sep))
|
>>> list(split_iter(['hi', 'hello', None, '', 'sup', False], falsy_sep))
|
||||||
[['hi', 'hello'], [], ['sup'], []]
|
[['hi', 'hello'], [], ['sup'], []]
|
||||||
|
|
Loading…
Reference in New Issue