I need a Regular Expressions to get the text within 2 tags.
Lets say I want an array returned containing any text within > and
I believe real problems will arise when you want to parse nesting constructs. For example, when you want to examine XML like this
123456
to extract data included in outermost tags one RegEx alone would not be enough. Just warn you to not use RegEx where some more (powerful and specific) methods exist. Real XML parsers should be considered when doing more complex tasks on XML. My 2 cents...