📄 mod_extension.bas
字号:
Attribute VB_Name = "Mod_Extension"
Public Function FileName(WithName)
Dim WithoutName, AllLen, Where As String
WithoutName = WithName
Do Until InStr(WithoutName, ".") = 0
AllLen = Len(WithoutName)
Where = InStr(WithoutName, ".")
WithoutName = Right(WithoutName, AllLen - Where)
Loop
FileName = WithoutName
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -