public static void Main()
string data = @"<a:LongitudinalTracker z:Id=""i58"">
<Name xmlns=""http://schemas.datacontract.org/2004/07/HmsSim.EntityModule.BaseTypes"" i:nil=""true""/>
<a:FMax xmlns:b=""http://www.w3.org/2001/XMLSchema"" i:type=""b:string""/>
<a:KVy xmlns:b=""http://www.w3.org/2001/XMLSchema"" i:type=""b:string""/>
<a:Td xmlns:b=""http://www.w3.org/2001/XMLSchema"" i:type=""b:string""/>
<a:VyLim xmlns:b=""http://www.w3.org/2001/XMLSchema"" i:type=""b:string""/>
</a:LongitudinalTracker>";
var newData = data.Replace("<a:FMax xmlns:b=\"http://www.w3.org/2001/XMLSchema\" i:type=\"b:string\"/>", "<a:FMax>0</a:FMax>")
.Replace("<a:KVy xmlns:b=\"http://www.w3.org/2001/XMLSchema\" i:type=\"b:string\"/>", "<a:KVy>0</a:KVy>")
.Replace("<a:Td xmlns:b=\"http://www.w3.org/2001/XMLSchema\" i:type=\"b:string\"/>", "<a:Td>0</a:Td>")
.Replace("<a:VyLim xmlns:b=\"http://www.w3.org/2001/XMLSchema\" i:type=\"b:string\"/>", "<a:VyLim>0</a:VyLim>");
Console.WriteLine(newData);
var newData2 = newData.Replace("<a:VxTableSxI3_2I xmlns:b=\"http://www.w3.org/2001/XMLSchema\" i:type=\"b:string\"/>", "<a:VxTableSxI3_2I>0</a:VxTableSxI3_2I>");
Console.WriteLine(newData2);