Is there a function that will test if the input is char OR string OR cellstr?
91 次查看(过去 30 天)
显示 更早的评论
Given many MatLab functions can easily handle strings, cellstrings and char arrays in their stride, is there a function which allows me to test if my variable is any of these?
I am aware that a simple function would be
function output = isText(myVar)
output = isstring(myVar)||ischar(myVar)||iscellstr(myVar);
end
but I feel like there should already by a function for this which is highly optimised?
I am sorry if this has been asked before, but if it has, the keywords are so used that this question is nowhere to be seen.
0 个评论
回答(2 个)
Fangjun Jiang
2020-7-2
You've made that function. If you look at the "See also" section of "help iscellstr", you don't see any other related functions.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!