I extract the data from Document Understanding as “DU_extraction” then i want to get the values and i do that with “DU_extraction.GetSimpleFieldValues(“Invoices.Address”)(0).DerivedValue”
And i get this
@“Key,Value
““Address Line 1"”,”“Gutbrot-Straße 11"”
““Zip Postal Code””,”“86678"”"
How could i get the both values — i want “Gutbrot-Straße 11 86678”
DU_extraction.GetSimpleFieldValues(“Invoices.Address”)(0).DerivedValue.Split({"Address Line 1"},StringSplitOptions.RempveEmptyEntries).Last().Split(Environment.NewLine.ToCharArray).First().Trim(" ,""".ToCharArray
)