search

Searching Mysql for simillar string

People have different ideas of how to search for the same term. For example Tri-Valley, Trivalley, Tri Valley (and possibly even incorrect spellings) Currently that search is done like this SELECT * FROM `table` WHERE `SchoolDistrict` LIKE '%tri valley%'; Is there an easy way to say 'space dash or no space' without writing out three...

How to index and search subversion repository

I have access to a very large code base stored in a subversion repository. I would like to be able to perform Google type searched on the code base. I have done this before when I have access to the server by creating a network share and using Google desktop. I currently do not have access to this subversion server box. Any Ideas? ...

How do I sort Lucene results by field value using a HitCollector?

I'm using the following code to execute a query in Lucene.Net var collector = new GroupingHitCollector(searcher.GetIndexReader()); searcher.Search(myQuery, collector); resultsCount = collector.Hits.Count; How do I sort these search results based on a field? Update Thanks for your answer. I had tried using TopFieldDocCollector but ...

Is there any search engine that searches more indepth web?

Is there any search engine that fills the gap where the normal search engines returns zero results. Occasionally I need to do a search containing special characters. Like for instance searching for the gnu building configure parameter "--with-newlib". It is not rare for google to completely destroying the specific string och characters ...

What is validating a binary search tree?

I read on here of an exercise in interviews known as validating a binary search tree. How exactly does this work? What would one be looking for in validating a binary search tree? I have written a basic search tree, but never heard of this concept. Thanks ...

Search in LINQ to SQL

Hi, I have some code like this: Function GetTypeFromTableName(ByVal _TableName As String, ByVal _DataContext As DataContext) Dim Mytype As Type = (From t In _DataContext.Mapping.GetTables Where t.TableName = "dbo." + _TableName Select t.RowType.Type).SingleOrDefault Return Mytype End Function Dim DBA As New LINQDataContext _...

how to get better suggestion(spelling) on yahoo boss?

I have been using Yahoo BOSS for little time .It is an easy API for search but spelling suggestion support is really not that robust .Do folks around here have any idea of getting better spelling suggestion on BOSS. ...

Using SQL to search for a set in a one-to-many relationship

Given the tables: role: roleid, name permission: permissionid, name role_permission: roleid, permissionid I have a set of permissions, and I want to see if there is an existing role that has these permissions, or if I need to make a new one. Note that I already know the permissionid, so really the permission table can be ignored ...

Binary search of a C# list using delegate condition.

I have a List<T> that I want to search not for a given item but for an item satisfying a given condition. Given an item in the list I can test which of 4 conditions is true: the desired item must be to the left the desired item must be to the right this is the desired item the desired can't be in the list A quick glance at the list f...

finding object in Javascript

I have a form with thousands of checkboxes, and when one is checked, I want to check all the boxes below it. This works: <html> <body> <form name="myform"> <input type="checkbox" name="box1" onClick="redrawboxes(this);">1<br> <input type="checkbox" name="box2" onClick="redrawboxes(this);">2<br> ... </form> </body> </html> <script> funct...

Converting user-entered search query to where clause for use in SQL Server full-text search

What's the best way to convert search terms entered by a user, into a query that can be used in a where clause for full-text searching to query a table and get back relevant results? For example, the following query entered by the user: +"e-mail" +attachment -"word document" -"e-learning" Should translate into something like: SELECT...

What is the easiest way to implement a search function on a website?

The website is almost entirely d/x/html, and is hosted on a linux/apache server. While I'm not opposed to using a database, I've been told that I can implement a solution that parses through the html documents and returns my search results without mucking about too much with asp/php/cgi (which I am most certainly a novice in). Is this ...

How can you list the matches of Vim's search?

I would like to list the matches, when I hit: /example so that I see where all matches are at once. ...

Does anyone know where decent documentation describing the Lucene index format IN DETAIL on the web is?

I am mainly curious as to the inner workings of the engine itself. I couldnt find anything about the index format itself (IE in detail as though you were going to build your own compatible implementation) and how it works. I have poked through the code, but its a little large to swallow for what must be described somewhere since there ar...

Windows API way to search subfolders with wildcards and other criteria in C++?

I think I saw once that it was possible to use the functionality of windows' search feature(s) in code. That it was possible to search for files using a sql query (something like "select filename from filestore where directory = 'c:\somedir' and extention in ('.doc','.txt','.me') and datemodified >= '2009-01-01 00:00:00'" Anyway, even ...

Example of using FindFirstFIleEx() with specific search criteria.

I asked about finding in subdirs with criteria. First answer was use FindFirstFileEx(). It seems the function is no good for this purpose or I'm using it wrong. So can someone explain how I would go about searching in a folder, and all it's subfolders for files that match (to give some sample criteria) .doc;.txt;*.wri; and are newer ...

How to design a database table structure for storing and retrieving search statistics?

I'm developing a website with a custom search function and I want to collect statistics on what the users search for. It is not a full text search of the website content, but rather a search for companies with search modes like: by company name by area code by provided services ... How to design the database for storing statistics ...

Find the path of notepad.exe and mspaint.exe

What is the best way to find out where is notepad.exe and mspaint.exe that will work across various versions of Windows? Should I get the Windows directory via SHGetFolderPath(NULL, CSIDL_WINDOWS, NULL, SHGFP_TYPE_CURRENT, dir), and then traverse through all the subdirectories to look for the two files? (Assume that I am not interested...

Is there a regular expression to find two different words in a sentence?

Is there a regular expression to find two different words in a sentence? Extra credit for an expression that works in MS Visual Studio 2008 :) For example: reg_ex_match(A, B, "A sentence with A and B") = true reg_ex_match(C, D, "A sentence with A and B") = false See also this related question ...

Finding first and last index of some value in a list in Python

Is there any built-in methods that are part of lists that would give me the first and last index of some value, like: verts.IndexOf(12.345) verts.LastIndexOf(12.345) ...