I have a scenario where I have an xml content and I need to get the version number from that file. For example below is the text.
<testing Version1 = "1.1" Version2 = "1.3">
<name> Example </Name>
<Description>sample description</Description>
</testing>
I need the Version2 value i.e., 1.3. Is it possible to get it by using Regex?
Thanks in Advance,