~~~
;=======================解析目录==================
path:="H:\bai\ee\ahk\readme.txt"
SplitPath,% path,OutFileName,OutDir,OutExtension,OutNameNoExt,OutDrive
out:="OutFileName: " . OutFileName . "`r`nOutDir: " . OutDir . "`r`nOutExtension: " . OutExtension . "`r`nOutNameNoExt: " . OutNameNoExt . "`r`nOutDrive: " . OutDrive
MsgBox,% out
;=======================解析URL==================
url:="https://autohotkey.com/docs/commands/Format.htm"
SplitPath,% url,OutFileName,OutDir,OutExtension,OutNameNoExt,OutDrive
out2:="OutFileName: " . OutFileName . "`r`nOutDir: " . OutDir . "`r`nOutExtension: " . OutExtension . "`r`nOutNameNoExt: " . OutNameNoExt . "`r`nOutDrive: " . OutDrive
MsgBox,% out2
Pause
~~~