导入数据然后拆分成数组形式

时间:2014-04-09 09:18:22

标签: matlab matlab-figure matlab-deployment

我想将字符串拆分为例如:en,wikipedia,org,wiki,hostname ...然后检查这些拆分字符串是否出现在A11中。但是,当我使用importdata时,我遇到了问题。

str = 'http://en.wikipedia.org/wiki/hostname';
split_URL = regexp(str,'[:/.]*','split') %// note the different search string
A11 = 'hostname From wikipedia, the free encyclopedia Jump to: navigation, search In    computer networking, a hostname (archaically nodename .....';
feature11 = (~cellfun('isempty', regexpi(A11, split_URL, 'once')))

我将str = 'http://en.wikipedia.org/wiki/hostname';替换为data=importdata(urlq),而urlq包含我保存在记事本中的http://en.wikipedia.org/wiki/hostname。 在这种情况下如何使用importdata

我可以使用1x6cells将str = 'http://en.wikipedia.org/wiki/hostname';拆分为数组形式,但在使用importdata时我不能这样做。有什么想法吗?

0 个答案:

没有答案