06-29-04 08:16 AM
Steven Burn wrote on 29 jun 2004 in
microsoft.public.inetserver.asp.general:
> "Scott" <sbailey@mileslumber.com> wrote in message
> news:eXWtVlWXEHA.3892@TK2MSFTNGP09.phx.gbl...
> Function StripIt(sWhat)
> Dim sRes
> sRes = Split(sWhat, "/")
> StripIt = sRes(UBound(sRes))
> End Function
Or if you are a Richt()winger:
Function StripIt(sWhat)
StripIt = Right(sWhat,len(sWhat)-InstrRev(sWhat,"/"))
End Function
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
[ Post a follow-up to this message ]
|