MATLAB如何半段一个字符数组中含有特定字符?

比如我有一个字符数组str,里面有很多字符,我想判断这个数组里是否含有JPG这个字符串,JPG是连在一起的,如果有,则返回1,没有就返回0。请问MATLAB有现成的命令么... 比如我有一个字符数组str,里面有很多字符,我想判断这个数组里是否含有JPG这个字符串,JPG是连在一起的,如果有,则返回1,没有就返回0。请问MATLAB有现成的命令么?如果自己写,应该怎么写?谢谢大家。 展开
 我来答
gudufeng6
推荐于2018-03-13
知道答主
回答量:22
采纳率:0%
帮助的人:19.4万
展开全部
在matlab中有查找字符串的命令,但是不是你所要求的返回1或0;
你可以使用如下的命令:

~isempty(strfind(str,'JPG'))

可以满足你的要求。
9192631770
2010-04-09 · TA获得超过7306个赞
知道大有可为答主
回答量:3138
采纳率:50%
帮助的人:2929万
展开全部
>> 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
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
低调侃大山
推荐于2016-10-03 · 家事,国事,天下事,关注所有事。
低调侃大山
采纳数:67731 获赞数:374580

向TA提问 私信TA
展开全部
  1. 使用strfind函数。
    S = 'Find the starting indices of the pattern string';
    strfind(S, 'in')
    ans =
         2    15    19    45

  2. 使用regexp函数。
    str = 'bat cat can car COAT court cut ct CAT-scan';
    regexp(str, 'c[aeiou]+t')
    ans =
         5    28

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式