I need to replace part of string with new lines.
Text processing ->replace does not work - it replaces searched string with "\n" instead of new line.
Tried with c# , probably getting there but need help
Text processing ->replace does not work - it replaces searched string with "\n" instead of new line.
Tried with c# , probably getting there but need help
Код:
var doms=project.Variables["doms"].Value;
var reg = new System.Text.RegularExpressions.Regex.Replace(doms,":",Environment.NewLine);
return reg;