Hi
Does anyone know of a regular expression pattern to find sentences.
I came up with this one based on several web searches. However it only finds one sentence even though i have global set to true.
"[a-zA-Z].*([.!?]\s|[.!?])"
I am using like so:
any help is appreciated thank you.
Ron
Does anyone know of a regular expression pattern to find sentences.
I came up with this one based on several web searches. However it only finds one sentence even though i have global set to true.
"[a-zA-Z].*([.!?]\s|[.!?])"
I am using like so:
Code:
MyRegExp.IgnoreCase = True
MyRegExp.Global = True
MyRegExp.Pattern = "[a-zA-Z].*([.!?]\s|[.!?])"
Set MyMatches = MyRegExp.Execute(RichTextBox1.SelText)
SentenceCounter = MyMatches.Count
any help is appreciated thank you.
Ron