For example, if I had the following string:
"this-is-a-string"
Could I split it by every 2nd "-" rather than every "-" so that it returns two values ("this-is" and "a-string") rather than returning four?
|
|
|
|
|
|
|
Here’s another solution:
|
|||
|
|
|
||||||||
|
|
|
EDIT: The original code I posted didn't work. This version does: I don't think you can split on every other one, but you could split on every - and join every pair.
|
||||||||||
|
|
|
Regular expressions handle this easily:
Output:
Update for Nick D:
Output:
|
||||||||||||||
|
|
|
Sometimes itertools.izip is faster as you can see in the results
Here is a version that sort of works with an odd number of parts depending what output you desire in that case. You might prefer to trim the
Here are some timings
|
||||||||||||||
|
|
|
I think several of the already given solutions are good enough, but just for fun, I did this version:
|
||
|
|