| REM **********************************************************
REM 文字列の最後の . 以降の文字列の取得
REM **********************************************************
Function GetExt( strValue )
Dim aData
aData = Split(strValue,".")
if Ubound( aData ) > 0 then
GetExt = aData(Ubound( aData ))
if Instr( GetExt, "\" ) > 0 then
GetExt = ""
end if
else
GetExt = ""
end if
End Function
| |