Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Everyone...

I want to parse .css tag of any website , means want to find .css links .

is it possible to find by regular expression ? if possible then how ?



please help.


Thank You
Posted
Updated 5-Nov-12 23:06pm
v2
Comments
Sergey Alexandrovich Kryukov 6-Nov-12 10:32am    
Excuse me, what is ".ccs tag"?! Never heard of such beast.
--SA

1 solution

A lot of things can be found using Regular Expressions, but does it make sense? I would suggest you use some HTML parser. It would be very simple for documents which are well-formed as XML, because XML parsers are readily available in .NET. It's so bad that unfortunately, many HTML documents are not well-formed. In this case, you need some other approach. Look at this one:
http://www.majestic12.co.uk/projects/html_parser.php[^].

Good luck,
—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900