Filter löschen
Filter löschen

find a word in a sentence in a cell

1 Ansicht (letzte 30 Tage)
Amr Hashem
Amr Hashem am 10 Mai 2015
Kommentiert: Stephen23 am 18 Mai 2015
i want to search for all the rows (:,6)that contain a specific word
i try :
[num text alldata] = xlsread('result.xlsx','1'); % import excel file
j=1;
k=1;
for i=1:size(alldata,1)
d = regexp(alldata{i,6},'[ ]*','split') % this split sentences but didn't save
for L=1:length(d)
idx(k)=l;
k=k+1; end
if isequal (alldata{i,6},'battery') % search for word "battery"
defs(j)=i;
j=j+1;
end end
data=alldata(defs,:);
but it didn't work....!
SOS...any help please.

Akzeptierte Antwort

Star Strider
Star Strider am 10 Mai 2015
I don’t have your data so I can’t run your code or test this, but see if:
if strcmpi(alldata{i,6},'battery') % search for word "battery"
improves your code.
It uses the strcmpi (case-insensitive string comparison) to do the test.
  2 Kommentare
Amr Hashem
Amr Hashem am 15 Mai 2015
please could you help me in ... i have this two tables querymdr & idx2 :
i want to compare the fisrt two coulmns of them , and the multiple value copy column 6 of it only
i want to have the answer like this:
what i can do? any one has an idea?
Amr Hashem
Amr Hashem am 18 Mai 2015
how i can use "strfind" instead of " strcmpi" and return 1 or 0

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by