📄 pisabsolutepath.m
字号:
function bool = pIsAbsolutePath(thisPath)
%PISABSOLUTEPATH Returns true if the path is absolute.
%
% Copyright 2005 The MathWorks, Inc.
% $File: $
% $Revision: $
% $Date: $
bool = 1;
if isempty(thisPath)
return
end
if(thisPath(1)=='.')
bool = 0;
else
if(ispc && length(thisPath)>=2)
bool = (thisPath(2)==':') | (thisPath(1)=='\');
else
bool = thisPath(1)=='/';
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -