PDA

View Full Version : HTML parser..for BREW V1.0?


arunbangari
03-16-2002, 02:49 AM
Hi all,
I want to build a HTML parser, using which i want to parse few tags and store the attribute values in a temporary buffer. I know this can be done easily in BREW version 1.1 using IHTMLVIEWER interface.But i want to build this for BREW version 1.0. I feel it can be built using helper functions available for string manipulations. I want to know does it have any significance effect on performance(with respect to processing)?

Thanks in Advance:D

kamal
03-22-2002, 08:10 PM
Performance impact will depend on various factor: 1) Parser implementation 2) Amount of data being parsed etc.

You can optimize the performance by doing more in memory operations intead of reading/writing from/to a file system.

-Kamal

arunbangari
03-22-2002, 08:31 PM
Thanks kamal. Iam able to parse the file using my own HTML parser(v1.0) and performance is pretty good. Iam working on memory optimization. Thanks for your advice.:)