Replacing Carriage Returns in VB.NET

  • Thread starter Thread starter Mario Vargas
  • Start date Start date
M

Mario Vargas

How do I replace carriage returns with <br /> in Visual Basic .NET?

I know this is easy to do with C# by simply calling myNewString =
myString.Replace( "\n", "<br />" );

Thank you for your input!

Mario Vargas
 
off the top of my head:

dim myNewString as string = myOldString.Replace(ControlChars.Cr, "<br />")
 
you can use this:

myNewString = Replace(TextToSearch, CharacterToReplace,
ReplaceWithCharacter)
 
Back
Top