Identifying Keywords in Strings strfind
5 次查看(过去 30 天)
显示 更早的评论
hello! I'm trying to get this program to recognize a couple of keywords in a string and then based on what those words are, give me an output.
so if i said "killing your father" it would recognize "Killing" as "Bad", "father" as "GoodObject" and mixing those two would get a "that's bad" result.
If i were to write "helping your brother" it would recognize "helping" as "Good" and "brother" as "GoodObject" it would give a "that's good" result.
The problem is I don't know how to make it so the program can recognize two strings in the same sentence. I thought using "&" would work, but it doesn't and i get ??? Undefined function or method 'and' for input arguments of type 'cell'.
Error in ==> goodbad at 11
if any(strcmpi(question,GoodObject & Good))
how could i use strfind so that it identifies anything in the Array "Good Object" or "Bad" or "Good"?
thank you!
GoodObject = {'brother', 'sister', 'mother', 'father'};
Bad = {'killing', 'hurting', 'stealing', 'robbing'};
Good = {'helping', 'giving', 'sharing', 'forgiving'};
question = input ('what?','s')
if any(strcmpi(question,GoodObject & Good))
disp('that''s good')
else if any(strcmpi(question,GoodObject & Bad))
disp('that''s bad')
end
end
2 个评论
per isakson
2013-6-17
This looks like a toy example. Are you looking for a solution that would scale, i.e will the lists of words be much longer?
采纳的回答
Marc
2013-6-17
I think you want to try regexp, regexpi and/or regexprep.
In the Matlab documentation, this is under: Matlab > Language Fundamentals > Data Types > Characters and Strings > Parse Strings....
There is a whole section under Examples and How To on "Regular Expressions".
0 个评论
更多回答(1 个)
Muthu Annamalai
2013-6-17
I have two comments, while in general agreement with @Marc;
1. You can build strings out of sentences in first pass 2. Use containers.Map() (see: http://www.mathworks.com/help/matlab/ref/containers.mapclass.html ) dictionary type to store your object-value associations, after sorting them.
valueMap = containers.Map();
valueMap('GoodThings') = sort({... })
valueMap('BadThings') = sort({...})
3. Use a binary-search to lookup each string in the sentence, against your Map. This will enormously speedup your program for long lists.
Goodluck!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!