使用VB脚本,我有这个例子:
myString = "\js\security\security.js"
newString = 'get the string after the last '\' which is the filename.
echo newString
如何提取以使输出为字符串:security.js
答案 0 :(得分:1)
创建一个文件系统对象并使用它执行所有操作。 Documentation GetFileName
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
newString = fso.GetFileName(myString)