Hi Guys,
I am using VBScript for programming
I have three vairables and there value is coming through vbscript program.
publicationPath = "/test/english"
publicationUrl = "/101/english"
publishedPath = "/test/english/about/india/delhi.aspx"
Now if you see the publicationPath and publishedPath's "/test/english" is same. Now I want that this will be replaced with the publicationUrl value, I mean the final url will be as given below.
pagePublishPath = /101/english/about/india/delhi.aspx"
Please suggest the solution using VBScript
Thanks.