I meet problematical for “matcher” css style in a text.
I want to get the following style:
style Search
<a id="d325" style="color: #ffffff;"> Visio Infrastructure and Applications </ a>
Regex Used:
Regex myRegex = new Regex(@"<a id=""d(.+?)"" style=""(.+)"" ><\/a>");
I think the problem is style = "color: # fffff" but I just can not understand .
Thanks a lot
The problems with your regex are
The other question is, is a regex the right tool for this job?