|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Library Reference > File > DBWFileNameNoExt1 |
Retrieves the file name without extension from the file name
Function DBWFileNameNoExt1(FileName)
FileName |
is the name of the file |
A string containing the file name of the document without dot and extension.
filename = "test.sldasm"
filenamenoext = DBWFileNameNoExt1(filename)
msgbox filenamenoext
'it prints "test"