I have an application in VB.NET that gets string data from a database. This line contains data that looks like this:
"This update:
I have a problem with the application"
I need only the part of the data that comes after the new line, that is, "I have a problem with the application."
To do this, I am trying to find a position using InStr , where the row contains data in a new row. I tried many options, but they do not work.
I used "vbCrLf", Chr (13), "\ r \ n", "\ n", " <br/>", Environment.NewLine, but none of them work.
How can I get the data I need?
Harsha
source
share