标题: 用VBS实现PHP的basename函数
作者: Demon
链接: https://demon.tw/programming/vbs-php-basename.html
版权: 本博客的所有文章,都遵守“署名-非商业性使用-相同方式共享 2.5 中国大陆”协议条款。
昨天写了一篇《用JavaScript实现PHP的basename函数》,按照惯例,给出VBS的实现。自己写的,如果有什么不对的地址,请不吝赐教。
赞赏Function basename(path, suffix) Dim regex, b Set regex = New RegExp regex.Pattern = "^.*[/\\]" regex.Global = True b = regex.Replace(path, "") If VarType(suffix) = vbString And _ Right(path, Len(suffix)) = suffix Then b = Left(b, Len(b) - Len(suffix)) End If basename = b End Function MsgBox basename(WScript.ScriptFullName, "")
微信赞赏支付宝赞赏
随机文章:
要实现BaseName的功能,只需要用FSO对象的GetFileName方法就OK了,不用那么麻烦。