Home Page › Forums › BizTalk 2004 – BizTalk 2010 › How to convert \0xa; to \n using inline C# in functoid › Re: How to convert \0xa; to \n using inline C# in functoid
February 11, 2009 at 8:55 AM
#21700
Try this. Should be work
str= LogText.Replace(
@”\0xa;”, “\n”);
Let me know, if it works.