I want to extract all tags in a xml file. However, I cannot write proper regular expression to extract the content I want.
The tags format in the file is like :
Tags=<"tracffic""apple""sample">
And I want to return a list contained all the tags: [traffic, apple, sample]
I tried this:
Tags=<("[\w]+")+
which only return the last tag.
Could anyone give me a hand?
Try this:
Now
tagscontains: