Borrar filtros
Borrar filtros

How do you search a file for a matching string?

1 visualización (últimos 30 días)
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.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 2 de Feb. de 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)

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by