Hello! I'm currently using the following regex (\s{2}\b) to add a delimiter between my string so I can parse data into columns. I basically need to convert a text file into an excel file that can be used to perform analysis.
An example row of data is as follows:
5540134 9/22/22 .9649 432645 53.27 51.16 .11 10/28/22 221025401
Using this regex: \s{2}\b
Result:
5540194 |9/22/22 .9649 |432645 |53.27 |51.16 .11 |10/28/22 |221028001
This works fine for the most part except it does not add a delimiter (|) before the .9649 and .11 in the above example. There are many more rows like this, where a delimiter before a decimal point (.) is not added. These decimals are all missing the 0 prior to the decimal point (.) so how can I modify my regex here? Thank you!!!