get all the first values of split python code example
Example 1: split string with first numerical value in python
re.split(r'(^[^\d]+)', string)[1:]
Example 2: python split by first match
s.split('mango', 1)[1]
re.split(r'(^[^\d]+)', string)[1:]
s.split('mango', 1)[1]