As of now, my extracted data is in form of [PONumber, 1233456].
I need to convert this to string format.
I have attached the snip of the variable type declared.
Could anyone please help me to sort it out.
As of now, my extracted data is in form of [PONumber, 1233456].
I need to convert this to string format.
I have attached the snip of the variable type declared.
Could anyone please help me to sort it out.
Try this:
result = String.Join(", ", extractedData.Select(Function(pair) $"{pair.Key}: {pair.Value}"))
I have tried but this was the error message now faced
Tried this method too but this is the output
remove (0) …as per intial one you have shown ienum but we dont see it here…so remove it should work
cheers
@Anandha_Krishnan
we cannot derive all details and values from above. But find some samples as an introduction to the main building blocks, demonstrated on a KVP Collection with 2 items:
And finally also a conversion to a dictionary:
Try this:
String.Join(Environment.NewLine, MyDict.Select(Function(keyvalue) keyvalue.Key & ": " & keyvalue.Value))
Hope it will helps you
Cheers!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.