How to capture any character using regular expressions
I want to capture the text in an attribute in an XML tag. it
<tag1 name="tag^*&,+">
I want to capture the value in the name attribute (which will be in this case tag^*&,+). This is a regex
name=\"([a-z0-9]+)\"
returns a value only if the text in the attribute is alphanumeric. Is there any syntax that will return the captured value no matter what character and characters? Thank!
+3