Azzera filtri
Azzera filtri

case insensitive strfind?

64 visualizzazioni (ultimi 30 giorni)
New
New il 24 Lug 2011
I have a matrix in which there are about 100,000 sentences that I want to scan for the existence of certain words (True/false). For previous scans, searching for one exact word, I used the strfind. Nevertheless, now I have a list of 18 words which might be written in lower or upper cases in the sequences. The strcmpi which could be useful in this case only returns positive if the whole sentence consist of the word... Is there another function I missed?
Thank you

Risposta accettata

Titus Edelhofer
Titus Edelhofer il 24 Lug 2011
Hi,
one simple method would be to use lower on both the sentences and the words you are using ...
Titus
  1 Commento
Tord Bjørnevaagen
Tord Bjørnevaagen il 11 Ago 2017
I just used this solution, thanks!
strfind(lower(bigText),lower(keyword))

Accedi per commentare.

Più risposte (2)

Fangjun Jiang
Fangjun Jiang il 24 Lug 2011
use regexpi
  1 Commento
Turner
Turner il 20 Ago 2013
takes 10 times longer than lower/upper followed by strfind() in my benchmark

Accedi per commentare.


Bjorn Gustavsson
Bjorn Gustavsson il 24 Lug 2011
Use: strcmpi
  2 Commenti
Walter Roberson
Walter Roberson il 25 Lug 2011
strcmpi() is not suitable for substring searches. See http://www.mathworks.com/help/techdoc/ref/strcmpi.html about what it _does_ do.
Bjorn Gustavsson
Bjorn Gustavsson il 25 Lug 2011
I misread the original poster's strfind as strcmp...

Accedi per commentare.

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by