Hi Everyone,
I am new to flex.
I want to create a regular expression pattern to extract xml tags from given string.
Eg.
start <test> ticket="new" check </test> inBetween <test ticket="old" check2 /> end1<test> type="ticket" value="234"</test>end2
Now i want to extract xml tags from above string and want to add all this in array
Output :
<test> ticket="new" check </test> , <test ticket="old" check2 /> , <test> type="ticket" value="234"</test>
Means i want to extract stuff related to that <test> xml tag.
anyone please suggest me how to solve it.
Thanks.