12 Jan
2012
12 Jan
'12
3:34 a.m.
Subhash Nagre
Now in my regex, I want that if any of the words occur from my vector, it should NOT be a seperate sentence. Any idea how can I create this Regular expression
I'd suggest not trying to do *everything* with a single regex. Why not just have a regex that is "sequence of stuff up to and including a period", and then analyze the resulting matches to see what constitutes an actual sentence? Best Regards, Tony