I have a method which takes in a single argument that is an xml string. Is there a way to split these transactions based on a tag in the xml?
Hi
Yes you can use something like below depending on where the value is, invoked object, return value or parameter value. Where xmlpart1 and xmlpart 2 are variables and should be replaced with the string pieces which precede the value you are looking for and after, to capture the tag
ToString().Split(string/xmlpart1).[1].Split(string/xmlpart2).[0]
Ciao