<tag><tag>123@#?</tag>

Could anyone please give me a regular expression syntax which will pick up absolutely anything which could appear between <tag> and </tag> please>???

I'm trying to use this, but it picks up the entire string (i.e. the first instance of <tag>, rather than just the "<tag>123@#?</tag>" string...
Code:
<tag>([\d\D\s\S\w\W]+)</tag>
Thanks!!!