Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for August 2010
27
How to replace carriage return with
posted on August 27, 2010 09:27
Public string ReplaceWithBR(string target) { Regex regex = new Regex(@"(\r\n|\r|\n)+"); string newText = regex.Replace(target, "<br />");...
[Read the rest of this article...]
Functions
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)