Hi,
I am trying to parse html tags.
For tags with quotes like
<input type="submit" value="order bed">
I am using
\s*=\s*\"*\*[^">]*
and for tags without any quotes
<td align=right SIZE=5 >
I am using
\s*=\s*[^\s]*
Is there a way to combine the two expressions? When I tried to combine them like follows,
\s*=\s*\"*\*[^"s>]*
I did not get good results
Thank you,
Burak
I am trying to parse html tags.
For tags with quotes like
<input type="submit" value="order bed">
I am using
\s*=\s*\"*\*[^">]*
and for tags without any quotes
<td align=right SIZE=5 >
I am using
\s*=\s*[^\s]*
Is there a way to combine the two expressions? When I tried to combine them like follows,
\s*=\s*\"*\*[^"s>]*
I did not get good results
Thank you,
Burak