S
Scott Emick
Given url's like the following:
http://www.xxx.yyy/foldername/index.cfm?id=165
http://www.xxx.yyy/index.cfm?id=165&pl=1
http://www.xxx.yyy/index.cfm
http://www.xxx.yyy/foldername/subfoldername/index.cfm?id=165
I need to get the [/foldername][/subfoldername]/pagename
I've tried a bunch of different things, the best I can get so far is
^http:\/\/.*\/([^\?\#\=]+)[\?\#].*
but that fails when there is no querystring.
Thanks
Scott Emick
http://www.xxx.yyy/foldername/index.cfm?id=165
http://www.xxx.yyy/index.cfm?id=165&pl=1
http://www.xxx.yyy/index.cfm
http://www.xxx.yyy/foldername/subfoldername/index.cfm?id=165
I need to get the [/foldername][/subfoldername]/pagename
I've tried a bunch of different things, the best I can get so far is
^http:\/\/.*\/([^\?\#\=]+)[\?\#].*
but that fails when there is no querystring.
Thanks
Scott Emick