How do I create a multiple keywords search engine?

3 次查看(过去 30 天)
I am trying to create a multiple keyword search that will allow user to input upto 5 keywords on a display panel and use this data to search for the cell in excel that certisfy this. N/B Only cells with all the keywords certisfy. I would also like the final answer be an new excel file with only the data (raws) that certisfied user input. The user input should not be case sensitive(ignore case). Please help.

回答(1 个)

Walter Roberson
Walter Roberson 2022-8-12
You can get the keywords from the user using any of inputdlg(), uitable(), uicontrol('style', 'edit') or uieditfield()
Once you have the list of keywords you can check cells using contains() or regexp. If you use contains you might want to use the new pattern() facility to "and" together several patterns.
Question: if the user asks for "cat" and the cell contains "scatter" should it match? What if it contains "cats"? If they ask for mouse and the cell contains "mice"? "ever" and the cell contains "when-ever"?
  1 个评论
Brian Kibe
Brian Kibe 2022-8-12
Thank you for your response, but, I'm still unsure on how to use those functions. An example would help.
To answer you question, it shouldn't matter if, for an example, the user asked for 'cat' and matlab outputs cells that even contain 'scatter'. The user will be resposible to decide if they require the data or not after its provided. Also, even though the user is looking for 'mouse' and the cell contains 'mice', they will be resposible to try various ranges of keywords in order to attain reliable data.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by