Link to home
Start Free TrialLog in
Avatar of disrupt
disruptFlag for United States of America

asked on

VB .NET String Manipulation

Let's say I have a paragraph with three sentences each sentence ends in a period. I need to break apart the paragraph and assign each sentence to a string. For example:

Paragraph String: This is s.entence one. This is s.entence two. This is an ex.ample of sentence three.

I need to store it as follows:

String1 = This is s.entence one
String2 = This is s.entence two
String3 = This is an ex.ample of sentence three

(Note: there are periods within the sentences but no trailing spaces after the period within the sentence)

How can I tackle this one?
 
ASKER CERTIFIED SOLUTION
Avatar of Brad Brett
Brad Brett
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial