Hello,
I have a string variable which is dynamically populated with a URL value. Some examples of the URL are:
http://cartoondoor.blogbus.com/index_5.html
http://asirir.blogspot.com/
http://neuronets.chat.ru/appendix.html
I'd like to be able to extract the domain--meaning the string value between // and /.
I've been struggling with this but can't seem to get it right. Any ideas?
Many thanks,![]()
strdomain = mid(query,(instr("//",query)+1,len(query)-instr("//",query)+1)
J
Bookmarks