vote up 0 vote down star

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????

flag
did you quote vbCrLf? it should be used withoud quoutes. – bassfriend Aug 7 at 11:17
I havn't used quote – Harsha Aug 7 at 11:27

3 Answers

vote up 0 vote down

The newline character can be represented either by just a newline character (Chr(10)) or by a carriage return/linefeed pair (Chr(13) + Chr(10)). Depending on the source of the data this may of course vary. One way to achieve this is to make a string split on those two characters with the option to remove empty elements, throw away the first one and join the others together with newlines in between them:

ReadOnly separators As Char() = New Char() {Chr(10), Chr(13)}
Private Function StripFirstLine(ByVal input As String) As String
    Dim parts() As String = input.Split(separators, StringSplitOptions.RemoveEmptyEntries)

    If parts.Length > 1 Then
        Return String.Join(Environment.NewLine, parts, 1, parts.Length - 1)
    Else
        Return input
    End If

End Function
link|flag
It't CR+LF (Char(13) + Char(10)), not the other way around. – Guffa Aug 7 at 11:25
It worked...thank you – Harsha Aug 7 at 11:31
@Guffa: you are right of course; flipped it around. Must be the heat. – Fredrik Mörk Aug 7 at 11:44
1  
In vb.net, you can also use the individual vbCr and vbLf constants, rather than having to call the Chr() function. – Joel Coehoorn Aug 7 at 11:54
vote up 1 vote down

Use vbCrLf and not "vbCrLf"

It may also be that you have only line feeds or only carrige returns so using Chr(10) and Chr(13) may also be a better option.

link|flag
thank you it works – Harsha Aug 7 at 11:30
vote up 0 vote down

I don't think I'm adding much to this discussion but for what it's worth... you can also use "ControlChars" as in "ControlChars.CrLf".

ControlChars @ MSDN

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.