vote up 0 vote down star

I want to use something like this:

os.path.split("C:\\a\\b\\c")

With this kind of output:

('C:\a\b', 'c')


However I want it to work on other delimiters like this:

method ('a_b_c_d')

With this kind of output:

('a_b_c', 'd')

flag

56% accept rate

2 Answers

vote up 15 vote down check
>>> 'a_b_c_d'.rsplit('_', 1)
['a_b_c', 'd']

Help on built-in function rsplit:

rsplit(...) S.rsplit([sep [,maxsplit]]) -> list of strings

Return a list of the words in the string S, using sep as the delimiter string, starting at the end of the string and working to the front. If maxsplit is given, at most maxsplit splits are done. If sep is not specified or is None, any whitespace string is a separator.

link|flag
+1: Quote the documentation. – S.Lott Mar 27 at 23:03
vote up 0 vote down
string.split(separator)
link|flag
that produces ["a", "b", "c", "d"] – recursive Mar 28 at 1:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.