On 8 Dec 2004 08:07:07 -0800, Al Murphy <> wrote:
[snip]
> 1. Make a call to a remote box and cache some data on the page (I
> believe JS can do this)
It *may* be possible to do this. See
<URL:http://jibbering.com/2002/4/httprequest.html>. You'll notice that the
introduction makes it fairly clear that support is limited.
> 2. Extract a substring from a string
That's simple enough:
string.substring(s, e)
where s and e are zero-order numbers; s denotes where extraction should
begin, and e specifies the (non-inclusive) end-point. For example:
'together'.substring(2, 5)
returns 'get'. Note that the string doesn't get modified; a new string is
returned.
[snip]
Hope that helps,
Mike
--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
|