I want to split the paragraph using the "." operator. But I don't want to split it for some cases. Like where "." come with word like "Dr.", or "Mrs.", and "Miss." or some few other words.
I need some logic whether it is in C# or in SQL Server.
I want to split the paragraph using the "." operator. But I don't want to split it for some cases. Like where "." come with word like "Dr.", or "Mrs.", and "Miss." or some few other words.
I need some logic whether it is in C# or in SQL Server.
I read the question as "How do I split the paragraph into it's component sentences?", if that's what you meant, here's how I would approach the problem:
Not knowing the scope of your true problem set, I can't say whether this approach is actually feasible or not.
Here is a (possibly) related question, if you're looking into a more robust English language parser, but that question was for Java.