I would like to split a string e.g.:
'JEBY VB /21/01 RG SPORT LTD 3802381001 - 21/01 COM BB3434345566778'
with a regular expression and need output:
['JEBY VB', 'RG SPORT LTD', 'COM BB']
I would like to split a string e.g.:
'JEBY VB /21/01 RG SPORT LTD 3802381001 - 21/01 COM BB3434345566778'
with a regular expression and need output:
['JEBY VB', 'RG SPORT LTD', 'COM BB']