priti
priti

Reputation: 1

get content in div tag in txt file using asp.net help of regular expression

Text file content div tag multiple times and i want to get content in div tag and display it using regular expression in asp.net

Upvotes: 0

Views: 710

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038830

Regular expressions shouldn't be used to parse HTML. If you have XHTML you could use HTML Agility Pack to achieve this.

Upvotes: 2

Related Questions