can anyone plz me to get resolve this problem
I need to compare two XMLs and need to show all the differences between two XMLs this needs to be automat by the .NETcode in UiPath studio
Anil_G
(Anil Gorthi)
June 2, 2023, 1:38pm
2
@Deepak_Ravula
You can use these and build on top of it
Problem statement — We need to extract book details from the XML data where the genre is ‘fantasy’
[image]
Book.XML
Import system.xml and system.xml.linq to the project.
Now, add 2 assign activities to the workflow area and write the following code.
[image]
This will load the xml and save it into element of ‘XElement’ type
[image]
The above query will get the data based where ‘Genre’ Value in ‘Fantasy’ and will store in an IEnumerable
Let’s run it and see the live action
Yo…
Cheers