Hi All,
I have developed a Map in Biztalk 2004 and For one element (LogText) , I need to convert \0xa; to \n using inline C# inside the functoid.
My C# Inline function is:
public string MyConcat(string LogText))
{
string str=LogText;
str= LogText.Replace(“\0xa;”, “\n”);
return str;}
I tried LogText.Replace(“\0xa;”, “\n”); This did not work.
But if I try
LogText.Replace(“0xa;”, “\n”); this works. But the problem is “\” will still remain in the string.
Can any one please help and let me know the solution.
Thanks
Kiran