Replacing Carriage Returns in VB.NET

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
 
E

Elliot M. Rodriguez

off the top of my head:

dim myNewString as string = myOldString.Replace(ControlChars.Cr, "<br />")
 
D

Dragos Marian Barbu

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

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top