I know how to capitalize first letter in each word. But I want to know how to capitalize first letter of each sentence in C#.
|
This is not necessarily a trivial problem. Sentences can end with a number of different punctuation marks, and those same punctuation marks don't always denote the end of a sentence (abbreviations like Dr. may pose a particular problem because there are potentially many of them). That being said, you might be able to get a "good enough" solution by using regular expressions to look for words after a sentence-ending punctuation, but you would have to add quite a few special cases. It might be easier to process the string character by character or word by word. You would still have to handle all the same special cases, but it might be easier than trying to build that into a regex. There are lots of weird rules for grammar and punctuation. Any solution you come up with probably won't be able to take them all into account. Some things to consider:
|
|||||||||||
|
|
As a first approximation, you could probably treat any sequence like |
|||||||||||
|
|
Consider a sentence as a word containing spaces an ending with a period. |
|||||||||||||||
|
|
There's some VB code on this page which shouldn't be too hard to convert to C#. However, subsequent posts point out the errors in the algorithm. This blog has some C# code which claims to work:
|
|||
|
|
|
Don't forget sentences with parentheses. Also, * if used as an idicator for bold text. |
|||
|
|
|
I needed to do something similar, and this served my purposes. I pass in my "sentences" as a
} |
|||
|
|
