MATLAB: How to split sentence

sentencesplit

cover_str = 'Great things in business done by one person. They done by a team of people.'
I want to split the above string into two sentences like
s1='Great things in business done by one person'.
s2='They done by a team of people'.
How can i do the above process in Matlab.
With regards.

Best Answer

s = strsplit(cover_str,'.')