string에서 newline tag를 br 태그로 변경

1
2
3
4
5
6
string rst = "";
if (!string.IsNullOrWhiteSpace(value)) {
    rst = value.Replace(Environment.NewLine, "<br />");
    rst = rst.Replace("\n""<br />");
}
return rst;
cs




간단간단!

+ Recent posts