I\'m after a regex ( php / perl compatible ) to get the first sentence out of some text. I realize this could get huge if covering every case, but just after something that
/\A(.+?)[.?!] /s
matches everything until one of those punctuation marks followed by the space. that's what sentence is, isn't? dot should match new lines