I have a XML, where i need to fetch all the values in “File File”
There are multiple places where the “File File”, has appeared. I need the value extracted in an array Variable.
As of now, I have been able to fetch only one value. Please help me fetch as many values in “File File”
WIP.xaml (6.5 KB)
XML_.xml (30.0 KB)
ppr
(Peter Preuss)
January 13, 2025, 8:59am
2
the XML is defining Namespaces which are to handle. Have a look here:
XML Extraction - Handling Namespaces (Tableau, Soap, OASIS types) - Help / Community - UiPath Community Forum
give a try at working with the Descendants(… method
ppr
(Peter Preuss)
January 13, 2025, 10:27am
3
A flow like this:
xnsDefault | Datatype: XNamespace =
xDoc.root.name.Namespace
Let us do the following
I used Assign Activity as follows.
Out (System.String ) = xDoc.Root.Descendants(xnsDefault + “File”).Select(Function (x) x.Value).ToArray
Out Output is arriving as follows:
System.String
Where do i please need to rectify please
ppr
(Peter Preuss)
January 13, 2025, 2:00pm
5
use the immediate panel
Understanding the 6 Debugging Panels of UiPath in the easiest way possible! - News / Tutorials - UiPath Community Forum
We dont know the details, but when using a Variable of DataType: String() - a String Array you will not get the content, but the DataType when it is involved e.g. log Message, Write Line, using ToString()…
Also have a look at String.Join(" | ", yourOutPutVar)
1 Like
Yes i made use of Log. Enclosed screenshot. Please help where to make the change to get the output.
ppr
(Peter Preuss)
January 13, 2025, 2:22pm
7
we already told:
use immediate panel for inspections
we mentioned:
ppr:
but the DataType
and we gave the modified statement:
The datatype of Out has to be a String Array. We also suggest to use more meanfully variable Names within the best practice suggestions
ppr
(Peter Preuss)
January 13, 2025, 8:15pm
8
@Manish_Bedi
we assume that all doubts are clarified now and also demonstrated the working suggestion within the immediate panel. So let’s close the topic by
Forum FAQ - How to mark a post as a solution
This document is part of our beginners guide .
This article will teach you how to properly mark a post as a solution.
We were closely following our last UiPath Forum feedback round! topic and carefully extracted all the bits of feedback that was provided. As such, we would like to tackle the topic of solutions on our Forum and how to properly use them.
When is the topic resolved?
The topic can be considered resolved when the topic author has found…
Sorry Peter, I still did not get it.
In the Assign Activity, correct me that this is right ?
Out: DataType String = xDoc.Root.Decendants(xnsDefault + “File”).Select(Function (x) x.Value).ToArray
Any modifications needed to it …Apologies again for inconvenience
ppr
(Peter Preuss)
January 14, 2025, 11:12am
10
Manish_Bedi:
Out: DataType String
No, as mentioned it is returning a String Array
Thanks Peter,
Out: DataType Array of String = xDoc.Root.Decendants(xnsDefault + “File”).Select(Function (x) x.Value).ToArray
Now i Passed ‘Out’ variable to Log (info) activity, the output is
System.String
Any miss here
ppr
(Peter Preuss)
January 14, 2025, 11:19am
12
we already mentioned:
and when a flat string is needed:
ppr
(Peter Preuss)
January 14, 2025, 12:54pm
14
in Addition to above, we hope that it can now finalized:
as mentioned:
And omit Out as Variable name as it is a Keyword and can cause compiler confusions
yes That works, Thanks a lot, everyone!