我想将字符串拆分为例如: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
时我不能这样做。有什么想法吗?