I have an application in VB.NET which gets "String" data from the database. This String has data which looks as below:
"This is the update:
I have an issue with the application"
I need only part of the data, that comes after the new line i.e. "I have an issue with the application".
For this I am trying to search the position using INSTR where the string has data in a new line. I tried many options but they don't work.
I used "vbCrLf", Chr(13), "\r\n", "\n", "<br/>
", Environment.NewLine but none of them work.
Can some one help how I can get the data I need????