1樓:匿名使用者
在matlab中有查詢字串的命令,但是不是你所要求的返回1或0;
你可以使用如下的命令:
~isempty(strfind(str,'jpg'))可以滿足你的要求。
2樓:匿名使用者
>> help strfind
strfind find one string within another.
k = strfind(text,pattern) returns the starting indices of any
occurrences of the string pattern in the string text.
strfind will always return if pattern is longer than text.
examples
s = 'how much wood would a woodchuck chuck?';
strfind(s,'a') returns 21
strfind('a',s) returns
strfind(s,'wood') returns [10 23]
strfind(s,'wood') returns
strfind(s,' ') returns [4 9 14 20 22 32]
see also strcmp, strncmp, regexp.
overloaded methods:
cell/strfind
reference page in help browser
doc strfind
如果是針對檔名,這個或許也有幫助
>> help fileparts
fileparts filename parts.
[pathstr,name,ext] = fileparts(file) returns the path,
filename and extension for the specified file.
fileparts is platform dependent.
you can reconstruct the file from the parts using
fullfile(pathstr,[name ext versn])
the fourth output, versn, of fileparts will be removed in a future
release.
see also fullfile, pathsep, filesep.
reference page in help browser
doc fileparts
3樓:匿名使用者
使用strfind函式。
s = 'find the starting indices of the pattern string';
strfind(s, 'in')
ans =
2 15 19 45
使用regexp函式。
str = 'bat cat can car coat court cut ct cat-scan';
regexp(str, 'c[aeiou]+t')ans =
5 28
matlab中如何使一個陣列中既有數字又有字串
4樓:轉基因牛
從陣列狹義角度來說bai,matlab並不允許陣列中du出現字串。但是字zhi符串陣列可以實dao現。
例如 str = ['12','tea'];
則str中包含了回數答字與字串,但是注意,這裡的12是兩個字元,而不是1個數字。
除了使用字串陣列實現,還可以通過元胞陣列實現。
元胞陣列是matlab中一種陣列,其可以包含任意型別的變數例如cellnum = ;
則cellnum這個元胞陣列中既包含數字12 又包含了字串tea.
5樓:匿名使用者
元胞陣列
a = ;
matlab中如何求陣列的最小值的下標
大野瘦子 如下 int min int a,int number int min a 0 int i 0 for int i 0 iif min a i min a i return min 注意事項 python的min函式返回列表中的最小的項。返回列表中最小的項的索引 def indexofmi...
如何把matlab中兩個陣列的不同元素挑出來
用find函式。假設第一個陣列是x,第二個陣列是y。有 如下 i find x y 該命令返回所有對應x元素不等於y元素的下標。x i y i 顯示所有不同元素 測試結果 擴充套件 如果x,y是同型號矩陣也可以。這是候傳回的引數可以是1個 矩陣線性化以後的下標 或者2個 行下標 列下標 或者3個 前...
sql中如何統計段中字串的個數
看你用什麼樣的資料庫去實現,sql server oracle 所使用的函式語句有出入的。查查具體資料庫的函式 語句。做個儲存過程應該就能搞定 用replace 將空格替換成 就是空的,然後跟原先的字元長度比較,得出的就是字串的個數。嘿嘿 剛剛想到的。select id,len nr len rep...