Counting the spesific word in text file

5 visualizzazioni (ultimi 30 giorni)
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 Commenti
Walter Roberson
Walter Roberson il 3 Giu 2022
What do you want to have happen if one of the occurrences is "PHi there!"? or "hi there!"?
tinkyminky93
tinkyminky93 il 3 Giu 2022
Phi there is not meaningful and it is impossible to found in my text file. But it is a good point.

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 3 Giu 2022
Modificato: Image Analyst il 3 Giu 2022
Did you try
fileChars = fileread(fileName);
locations = strfind(fileChars, 'Hi there!')
numLocations = numel(locations)
  1 Commento
Walter Roberson
Walter Roberson il 3 Giu 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.

Accedi per commentare.

Più risposte (2)

VINAYAK LUHA
VINAYAK LUHA il 3 Giu 2022
Modificato: VINAYAK LUHA il 3 Giu 2022
data = fileread("content.txt")
pattern="hi there!"
substr_freq =count(data,pattern)
%substr_freq has your answer
  1 Commento
tinkyminky93
tinkyminky93 il 3 Giu 2022
Modificato: tinkyminky93 il 3 Giu 2022
Search term must be a text or pattern array, error using count

Accedi per commentare.


tinkyminky93
tinkyminky93 il 3 Giu 2022
Modificato: tinkyminky93 il 3 Giu 2022
you are right sir @Walter Roberson, I got the point.

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by