I have the following character vector:
"This is a very long character vector. Why is it so long? I want to split this vector into senteces by using e.g. strssplit. Can someone help me? That would be nice?"
I want to split it into sentences by using the following pattern (i.e. period - space - upper case letter):
"This is a very long character vector."
"Why is it so long? I want to split this vector into senteces by using e.g. strssplit."
"Can someone help me?"
"That would be nice?"
Hence, period after abbrevations should not be a new sentence. I want to do this using regular expressions in R.
Can someone help me?