1. HTTP data
- Posted by sixs at ida.net May 10, 2002
- 391 views
This is a multi-part message in MIME format. ------=_NextPart_000_0049_01C1F932.DFEE4520 charset="iso-8859-1" How do you dismantle HTTP data in a web page. If you have a person's =3D name and a tag "name", do you search the whole file one position at a = =3D time or search one line one position at a time? Jim ------=_NextPart_000_0049_01C1F932.DFEE4520 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2722.2800" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>How do you dismantle HTTP data in a web = page. If=20 you have a person's =3D<BR>name and a tag "name", do you search = the whole=20 file one position at a =3D<BR>time or search one line one position at a=20 ------=_NextPart_000_0049_01C1F932.DFEE4520--
2. Re: HTTP data
- Posted by Kat <gertie at PELL.NET> May 10, 2002
- 394 views
On 11 May 2002, at 21:29, sixs at ida.net wrote: > > How do you dismantle HTTP data in a web page. If you have a person's = > name and a tag "name", do you search the whole file one position at a = > time or search one line one position at a time? Webpages are usually small, load the whole thing into a sequence (string) and use match() or wildmatch() to find what you are looking for. If there is more than one tag, you can always trim the sequence down for a bad first match, and search again. Kat
3. Re: HTTP data
- Posted by sixs at ida.net May 12, 2002
- 390 views
Thanks for you help ----- Original Message ----- From: Kat <gertie at PELL.NET> Subject: Re: HTTP data > > On 11 May 2002, at 21:29, sixs at ida.net wrote: > > > > > How do you dismantle HTTP data in a web page. If you have a person's = > > name and a tag "name", do you search the whole file one position at a = > > time or search one line one position at a time? > > Webpages are usually small, load the whole thing into a sequence (string) > and use match() or wildmatch() to find what you are looking for. If there is > more than one tag, you can always trim the sequence down for a bad first > match, and search again. > > Kat > > > >