我正在使用VBScript进行编程
我有三个可用的东西,有价值来自vbscript程序。
publicationPath = "/test/english"
publicationUrl = "/101/english"
publishedPath = "/test/english/about/india/delhi.aspx"
现在,如果您看到 publicationPath 和 publishedPath's “/ test / english”相同。现在我想要将其替换为publicationUrl值,我的意思是最终的URL将如下所示。
pagePublishPath = /101/english/about/india/delhi.aspx"
请使用VBScript建议解决方案
感谢。
答案 0 :(得分:2)
要用字符串中的其他子字符串替换子字符串,请使用Replace
函数:
pagePublishPath = Replace(publishedPath, publicationPath, publicationUrl, 1, 1, vbTextCompare)