Counting the spesific word in text file
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
tinkyminky93
am 3 Jun. 2022
Bearbeitet: Image Analyst
am 3 Jun. 2022
Hello, I have a text file and I want to see how much 'Hi there!' word inside of it. How can I do it? Thank you.
2 Kommentare
Walter Roberson
am 3 Jun. 2022
What do you want to have happen if one of the occurrences is "PHi there!"? or "hi there!"?
Akzeptierte Antwort
Image Analyst
am 3 Jun. 2022
Bearbeitet: Image Analyst
am 3 Jun. 2022
Did you try
fileChars = fileread(fileName);
locations = strfind(fileChars, 'Hi there!')
numLocations = numel(locations)
1 Kommentar
Walter Roberson
am 3 Jun. 2022
If you have "hi there" with lower case H, and you are searching for "Hi there!' with upper case H and with ! then the count should be 0.
Weitere Antworten (2)
VINAYAK LUHA
am 3 Jun. 2022
Bearbeitet: VINAYAK LUHA
am 3 Jun. 2022
data = fileread("content.txt")
pattern="hi there!"
substr_freq =count(data,pattern)
%substr_freq has your answer
1 Kommentar
Siehe auch
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!