My XML input file has tags similar to the following:
I'd like my output to look like this:
I assume I need to work with value-of(), but have no idea where to start.
Code:
<tag>Name [345:456]</tag>
<tag>Name1 Name2 [1345:5456]</tag>
I'd like my output to look like this:
Code:
Name,345,456
Name1 Name2,1345,5456
I assume I need to work with value-of(), but have no idea where to start.