Counting the spesific word in text file
Show older comments
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 Comments
Walter Roberson
on 3 Jun 2022
What do you want to have happen if one of the occurrences is "PHi there!"? or "hi there!"?
tinkyminky93
on 3 Jun 2022
Accepted Answer
More Answers (2)
VINAYAK LUHA
on 3 Jun 2022
Edited: VINAYAK LUHA
on 3 Jun 2022
data = fileread("content.txt")
pattern="hi there!"
substr_freq =count(data,pattern)
%substr_freq has your answer
1 Comment
tinkyminky93
on 3 Jun 2022
Edited: tinkyminky93
on 3 Jun 2022
tinkyminky93
on 3 Jun 2022
Edited: tinkyminky93
on 3 Jun 2022
0 votes
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!