123456789101112131415161718192021222324252627282930313233343536373839 |
- .. _func_file_stripext:
- ========
- StripExt
- ========
- StripExt -
- Description
- ===========
- .. code-block:: blitzmax
- StripExt$( path$ )
- Strip extension from a file path
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- .. code-block:: blitzmax
- ' stripext.bmx
-
- print stripext("mypath/myfile.bmx") 'prints mypath/myfile
- See Also
- ========
|