Read all occurances of a specific tag out of an HTML file
-
Hi all How to use streamreader class to read all occurances of a specific tag out of an HTML file Example i want to read this tag << p >> onwards
This is some text in a paragraph.
How do i able to capture p ? Thank You
-
Hi all How to use streamreader class to read all occurances of a specific tag out of an HTML file Example i want to read this tag << p >> onwards
This is some text in a paragraph.
How do i able to capture p ? Thank You
Easy way is to read each character and check it is the expected one. If yes, start reading from there. Other way is to read the whole file and use regular expression to find <p>.
Navaneeth How to use google | Ask smart questions
-
Easy way is to read each character and check it is the expected one. If yes, start reading from there. Other way is to read the whole file and use regular expression to find <p>.
Navaneeth How to use google | Ask smart questions
How to type out the code? =X Thank You
-
How to type out the code? =X Thank You
What you mean? :confused:
Navaneeth How to use google | Ask smart questions
-
What you mean? :confused:
Navaneeth How to use google | Ask smart questions
U say Easy way is to read each character and check it is the expected one. If yes, start reading from there. Other way is to read the whole file and use regular expression to find
So what is the coding to check if it is the expected one? Thank You
-
U say Easy way is to read each character and check it is the expected one. If yes, start reading from there. Other way is to read the whole file and use regular expression to find
So what is the coding to check if it is the expected one? Thank You