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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top