Filter löschen
Filter löschen

How do you search a file for a matching string?

1 Ansicht (letzte 30 Tage)
Vinay kumar Reddy
Vinay kumar Reddy am 2 Feb. 2013
Hi,
I have a huge contacts list in a excel file which consists of following fields
FirstName LastName UserID EmailAddress.
I have FirstName and LastName in MATLAB as a variable.
How do I extract the user ID and EmailAddress for a corresponding FirstName and LastName?
Note:There are some 50,000 contacts in Excel file.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 2 Feb. 2013
[num,text,v]=xlsread('yourfile')
s1='firstname';
s2='lastname';
idx=find(strcmp(v(:,1),s1) & strcmp(v(:,2),s2)
Id=v(idx,3)
Email=v(idx,4)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by