Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: JSON valuePair entfernen
6. Sep 2021, 18:28
Delphi-Quellcode:
var
aJSON: TJSONValue;
aJSONObj: TJSONObject;
aJSONStr: string;
begin
aJSONStr := '{"price": { "dealerPriceGross": "535.50", "vatRate": "1.23", "currency": "EUR" }}';
aJSON := TJSONObject.ParseJSONValue(aJSONStr);
aJSONObj := aJSON.GetValue<TJSONObject>('price');
aJSONObj.RemovePair('vatRate');
aJSONStr := aJSON.ToJSON;
end;
|