如何提取字符串?

时间:2015-07-09 08:27:27

标签: string vbscript

使用VB脚本,我有这个例子:

myString = "\js\security\security.js"
newString = 'get the string after the last '\' which is the filename.

echo newString

如何提取以使输出为字符串:security.js

1 个答案:

答案 0 :(得分:1)

创建一个文件系统对象并使用它执行所有操作。 Documentation GetFileName

Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
newString = fso.GetFileName(myString)