我是XSD的新手。
<xs:schema id="test"
targetNamespace="http://tempuri.org/test.xsd"
elementFormDefault="qualified"
xmlns:bb="http://tempuri.org/test.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
,字段如下
BB:名称
BB:年龄
BB:位置
我需要从命名空间中删除'bb',以便它变成xmlns =“.........”以及我需要从字段名称中删除'bb:'以及使用C#。
答案 0 :(得分:0)
xsdString.Replace("xmlns:bb=", "xmlns=").Replace("<bb:", "<").Replace("</bb:", "</")