0

元の入力 json -

{
 "demo" : "a12,b45,c78" ,
 "status" :  "1" 
}

予想される出力は xml です

<demo>
<Value>a12</Value>
<Value>b45</Value>
<Value>c78</Value>
</demo>
<status>done</status>

最初に json を作成し、ロジック アプリで @xml() を使用して、これを xml に変換します。

{
 {% if content.status == "1" %}
 "status" : "done"
 {% elsif content.status == "2" %} 
      "status" : "done"
 {% endif %}
"demo": {"Value":["a12","b45","c78"]}
}

デモ用の C# コードは次のようになります -

 string a = "a12,b45,c78";

            var aa = a.Split(',').ToArray(); 
4

1 に答える 1