finding the string from the text file

45 visualizaciones (últimos 30 días)
msp
msp el 18 de Abr. de 2013
Comentada: Mira Mamdouh el 23 de Dic. de 2019
i want to find the string from the given text file.
Example file contains : Hello welcome matlab tutorial.
if input is matlab, it should search the word(string) from the file if matched out put should string present in file else string doesn't present in the file.
  2 comentarios
msp
msp el 18 de Abr. de 2013
Please Help Me with source code
Cedric
Cedric el 18 de Abr. de 2013
Editada: Cedric el 18 de Abr. de 2013
Here is the best help that I can provide you with, accounting for your other questions:
In the "MATLAB" section, you will find the following documents:
  • PDF labeled "MATLAB Primer".
  • PDF labeled "Mathematics".
  • PDF labeled "Programming Fundamentals".
After reading these and training so you have a fair understanding of the material, you'll be able to do much more by yourself without asking for "(complete) source code".

Iniciar sesión para comentar.

Respuestas (3)

Matt Kindig
Matt Kindig el 18 de Abr. de 2013
To get you started, look at the documentation for the following functions:
doc strfind %to find whether a string is present
doc fileread %to read a text file all at once into a variable

Mahdi
Mahdi el 18 de Abr. de 2013
Editada: Mahdi el 18 de Abr. de 2013
A=fileread(filename)
B=strfind(A, WordString)
I would suggest looking at the strfind() function for more information.
  1 comentario
Mira Mamdouh
Mira Mamdouh el 23 de Dic. de 2019
does it work properly if the microsoft file contains macros ?

Iniciar sesión para comentar.


msp
msp el 18 de Abr. de 2013
any source code available?
  1 comentario
Matt Kindig
Matt Kindig el 18 de Abr. de 2013
Mahdi and I just gave you functions to get you started. What further source code do you need? Keep in mind that this forum will not simply write code for you (especially because this seems a lot like homework).

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by