I have a PDF file which I converted to .txt using an online tool. Now I want to parse the data in that and split it using regular expression. I am almost done but stuck at 1 point.
Example of data is:
00 41 53 Bid Form – Design/Build (Single-Prime Contract)
27 05 13.23 T1 Services
I want to split it like : 00 41 53 Bid Form – Design/Build (Single-Prime Contract)
and other is 27 05 13.23 T1 Services
The regular Expression I'm using is [0-9](\d|\ |\.)*(\D)*
It can have numbers with spaces and/or dots, then text which can be (letters, dot, comma, (
, )
, -
, and digits).
I cannot match a string if it has number in it like the "T1 Services" above.