I am running into an issue where I get the following error message:
extra characters after close-quote
What I am doing is reading the html code from a web server into a buffer. Whenever I try to do anything with that buffer I get the error. The reason for the error is that in the html code is a line similar to:
<input "name=test">
I can see that there is a > after the " which is generating the error, but I don't know how to get around it.
I also see the same error as I read data out of a database. The data I'm reading is:
"1": "1"
Again, it doesn't like the : after the ". However, this is data in a database which I can't change.
Does anyone know how to get around this???
Dave S.
extra characters after close-quote
What I am doing is reading the html code from a web server into a buffer. Whenever I try to do anything with that buffer I get the error. The reason for the error is that in the html code is a line similar to:
<input "name=test">
I can see that there is a > after the " which is generating the error, but I don't know how to get around it.
I also see the same error as I read data out of a database. The data I'm reading is:
"1": "1"
Again, it doesn't like the : after the ". However, this is data in a database which I can't change.
Does anyone know how to get around this???
Dave S.