No. There is no simple trick. To do this properly, you need to do a syntactic analysis of the text. Nobody can do that. At least not yet. At least not 100% of the time. Mainly because it also entails a semantic analysis of the text. You see, contrary to what the type of linguists that taught you grammar in school think, what makes up a sentence is pretty hard to sum up in a set of rules a computer could follow without understanding the text.
Spend the next couple of years looking up computational linguistics. Maybe by then there will be a shortcut?
But you can get close.
I'd probably try to look for the first period, question mark or exclamation mark followed by whitespace.
/^(.*?)[.?!]\s/
(The (.*?)
is a non-greedy regex, to make sure you really do only find the first sentence.