hello i having the data set which consists to text, whole numbers and decimal numbers, text is a paragraph which will be having all this mix, trying to strip out only the whole numbers and decimal numbers out of the text content, there are about 30k trow entries.
input format of data:
- This. Is a good 13 part. of 135.67 code
- how to strip 66.8 in the content 6879
- get the numbers 3475.5 from. The data. 879 in this 369426
Output:
13 135.67
66.8 6879
3475.5 879 369426
i tried replace all alphabets one by one, but 26+26 replace all is making code lengthy, and replacing "." replaces "." from the numbers also Thanks, Praveen