Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

140
votes
17answers
21k views

How does the Google “Did you mean?” Algorithm work?

I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly ...
5
votes
2answers
279 views

Fast Dynamic Fuzzy search over 100k+ strings in C#

Let's say they are pre-loaded stock symbols, typed into a text box. I am looking for code that I can copy, not a library to install. This was inspired by this question: Are there any Fuzzy Search or ...
4
votes
3answers
320 views

adapting text search for graph/molecule comparison algorithms

I'm looking for a text search engine for a non-traditional sort of text search and I want advice on which tool (Lucene, Sphinx, Xapian, or something else) is most appropriate for me, plus pointers on ...
4
votes
8answers
447 views

efficient algorithm for searching one of several strings in a text?

I need to search incoming not-very-long pieces of text for occurrences of given strings. The strings are constant for the whole session and are not many (~10). Additional simplification is that none ...
4
votes
4answers
572 views

Fast file search algorithm for IP addresses

Question What is the fastest way to find if an IP address exists in a file that contains IP addresses sorted as: 219.93.88.62 219.94.181.87 219.94.193.96 220.1.72.201 220.110.162.50 220.126.52.187 ...
4
votes
2answers
2k views

.NET: Programmatically search for text in a PDF file and tell the page number?

There are some tools which allow to extract the whole text portion of a PDF file in order to full text index the PDF. What I need is a way to search for certain strings and, if thery were found in ...
2
votes
4answers
54 views

How to save searches on a WinForm

I have created a Search form with a function Find Text, How do I save the last search so I can create a Find Again Button when the form has been re-opened? My code for the search is: private ...
2
votes
3answers
120 views

How to make substring-matching query work fast on a large table?

I have a large table with a text field, and want to make queries to this table, to find records that contain a given substring, using ILIKE. It works perfectly on small tables, but in my case it is a ...
2
votes
3answers
141 views

having a map of strings how to compare it to given string

We have map of string pairs like name:location (unix like absolute location a la myfolder/). We are given with some location a la myfolder/mysubfolder/myfile. How to find which of maps location fit to ...
2
votes
2answers
202 views

searching through a text file, and display the results?

if get an input from the user and i wanted to search the file for any results, and display the results: $searchValue = $_POST['search']; $handle = @fopen("home.txt","r"); # read line by line while ...
2
votes
1answer
112 views

Python - Library that compute relevance score for text search

My idea is to achieve an execution similar to the MySQL MATCH / AGAINST keywords. Do you know a python library that compute relevance score for text searches? If not satisfying answers I am going to ...
2
votes
3answers
447 views

how to find the first word in the sentence having 'w' in it

how can i find the first word in my sentence having 'w' character.This character can be present anywhere in my word.example of sentence "Hi xyzwy! what are you doing here?" So the result should be ...
2
votes
1answer
493 views

WPF combobox highlight

In WPF, when I enter some text in combobox, it will highlight the item starting with the text I entered. This highlighting will search the whole text i have entered in the combo box. But instead i ...
0
votes
1answer
58 views

How to check if a file contains html instead of true content, when using a .php download service?

My C# WinForms app downloads files from a .php downloading web service. The .php page returns error as HTML pages displayed to the user (I don't have an alternative API for this) What would be the ...
0
votes
1answer
59 views

How to extract a key from a “search query”?

I need to extract the keywords of a search query. For example, suppose one searches for "latest popular Nokia phones". I want to extract the keywords of this phrase. Are there any libraries written in ...
0
votes
1answer
69 views

Searching the contents of HTML files for particular words

I'm developing an app for iPad which loads HTML files and so displays my content in a funny and cute manner. Now starts my nightmare, I try to search random words inside these files and don't know ...
0
votes
1answer
148 views

Find string section that contains another String, with possible intervening words

For the last project of the semester, the goal is to run searches of a particular phrase on a lyric String inside an Song object, then rank the results based on the length of the substring match. The ...
0
votes
1answer
226 views

App engine - easy text search

I was hoping to implement an easy, but effective text search for App Engine that I could use until official text search capabilities for app engine are released. I see there are libraries out there, ...
0
votes
3answers
390 views

Search Text In Files Using PHP

How to search text in some files like PDF, doc, docs or txt using PHP? I want to do similar function as Full Text Search in MySQL, but this time, I'm directly search through files, not database. The ...
0
votes
0answers
130 views

Text search with soft hyphens in Internet Explorer

We are using soft hyphens in a text paragraph on a web page to improve the layout, since the number of long words in the text is unusually high. Unfortunately, this causes the text search (Ctrl+F) in ...
0
votes
7answers
436 views

how to search for a word in a book programmatically?

I need to develop an application that can search through a book and list out all the pages and lines that contain a given keyword. For books that are split up in some other way, such as a bible ...