ASP使用InStrRev獲取文件擴展名
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
做法是使用InStrRev函數查找文件名字符串中最后一個點的位置,然后根據這個位置使用Mid函數來提取文件擴展名。 function get_file_extname(file_name) dotix = InStrRev(file_name, ".") If dotix > 0 Then get_file_extname = Mid(file_name, dotix) Else get_file_extname = "" End If end function ?該文章在 2024/12/14 10:48:37 編輯過 |
關鍵字查詢
相關文章
正在查詢... |