Re: HTTP data
- Posted by Kat <gertie at PELL.NET> May 10, 2002
- 391 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