I have a string contains a set of values i have extract a word(space should ignore) after a substring I tried splitting the string
text = text.split("Vehicle Number",1)[1]
text contains Vehicle Number 4092 casuality 230 \n report based on 23/54/2 accidents 0192
I have to store the values (Dictionary)
Vehicle Number : 4092,
report based on : 23/54/2,
accidents : 0192
How can i achieve this ?