I have written a regex to match Html tags , if i use on the below tag
<p style="margin-bottom: 0px; font-stretch: normal; font-size: 14px; line-height: normal; font-family: "Helvetica Neue" ">
it matches till
<p style="margin-bottom: 0px; font-stretch: normal; font-size: 14px; line-height: normal; font-family: "
but i want to match till
<p style="margin-bottom: 0px; font-stretch: normal; font-size: 14px; line-height: normal; font-family: "Helvetica Neue" "
Regex i am using
/^<((?:[a-zA-Z])[\w:-])((?:\s+[\w:-]+(?:\s=\s*(?:(?:"[^"]")|(?:'[^']')|[^>\s]+))?))\s(/?)\s*(>?)/
Can some one correct the above regex to match correctly?