Hi all, I am trying to retrieve information like this:
e.g.
Describe me in two words.
Describe me as a person.;
This is OCBC bank, I would like to know more about shares.
(After this blah blah blah)
So I need a regex that can read 1. 2. 3. 4. 5. but there are times where they can be only up to 3 points and not 5points and I need it to limit to only end the search at the last one, is there any way to do this? The information may consisit of commas etc in between. I tried using this (\d.\D*)+ but it does not work!
Hi @ranjith thanks for the reply! But in the entire word document I have other numeric character and dot as well, is there any way to limit the search of the pattern?
@ranjith u mean using lookback right? I did try but only a few documents don have the same ending specific content. But thats not the issue now, The issue now is that I can read the first 3 word documents information nicely, but the 4th document onwards it doesn;t read accordingly although its in the same format. I merely used D* which is suppose to read everything thats not a digit and i made it end before a specific word/content.
@ranjith It might not always have 5points it might have 2 or 3 sometimes so I need a regex to output accordingly to how many I have for that specific word document