Extracting sentences from a text file
Hi!
I need to write a code to extract sentences from a text file.Now ,if I use '.' as a delimiter and separate the sentences on basis of that I will get into problems with acronyms.Because U.S.A will give 3 sentences U,S and A!How can I tackle this problem?
Re: Extracting sentences from a text file
End-of-sentence punctuation followed by a space followed by a capital letter?
Re: Extracting sentences from a text file
Quote:
extract sentences from a text file.
You need to define the character sequences that end a sentence. Does post #2 do that?