⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 containsregexp.m

📁 Matlab 单元测试工具箱 Matlab Unit Test Toolbox
💻 M
字号:
function tf = containsRegexp(str, exp)
%containsRegexp True if string contains regular expression
%   TF = containsRegexp(str, exp) returns true if the string str contains the
%   regular expression exp.  If str is a cell array of strings, then
%   containsRegexp tests each string in the cell array, returning the results in
%   a logical array with the same size as str.

%   Steven L. Eddins
%   Copyright 2008-2009 The MathWorks, Inc.

% Convert to canonical input form: A cell array of strings.
if ~iscell(str)
   str = {str};
end

matches = regexp(str, exp);
tf = ~cellfun('isempty', matches);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -