how can i open *.html file as ascii file for manipulation?

  • Thread starter Thread starter frontline1
  • Start date Start date
F

frontline1

hello
im trying to open html file with fstream clas
(foo.open("test.html",ios::in)
but with no luck , but when i try to open in this way *.txt file , i
is working great .
my question is , how can i open html file and manipulate it. do i nee
spatial class?
thank


-
frontline
 
frontline1 said:
hello
im trying to open html file with fstream class
(foo.open("test.html",ios::in)
but with no luck , but when i try to open in this way *.txt file , it
is working great .
my question is , how can i open html file and manipulate it. do i need
spatial class?

An HTML file IS a text file, so no special handling is required from the
IOStreams standpoint. What's not working?

-cd
 
Back
Top