Tagged Questions
Search is used to look through a body of data, usually text, to find particular results that match some set of criteria.
262
votes
14answers
43k views
Regular expression to search for Gadaffi
I'm trying to search for the word Gadaffi. What's the best regular expression to search for this?
My best attempt so far is:
\b[KG]h?add?af?fi$\b
But I still seem to be missing some journals. Any ...
107
votes
7answers
20k views
grep a file, but show several surrounding lines?
I would like to grep for a string, but show the preceding 5 lines and following 5 lines as well as the matched line. I'm scanning for errors in a logfile, and want to see the context.
Any clues for ...
100
votes
7answers
16k views
vim clear last search highlighting
After you do a search in vim you get all the occurrences highlighted, how can you disable that? I now do another search for something gibberish that can't be found.
Is there a way to just ...
89
votes
17answers
76k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...
79
votes
4answers
11k views
How does Google Instant work?
Any ideas on exactly how the new google instant search works? It seems to just be AJAX calls to the old search, but it's pretty hard to simplify Google that much. Anybody have speculations?
EDIT:
I ...
60
votes
22answers
4k views
How to search for “R” materials?
"The Google" is very helpful... unless your language is called "R," in which case it spits out tons of irrelevant stuff.
Anyone have any search engine tricks for "R"? There are some specialized ...
57
votes
14answers
18k views
What's the best Django search app?
I'm building a Django project that needs search functionality, and until there's a django.contrib.search, I have to choose a search app. So, which is the best? By "best" I mean...
easy to install / ...
53
votes
14answers
20k views
SVN Repository Search
Is there any good software that will allow me to search through my SVN respository for code snippets? I found 'FishEye' but the cost is 1,200 and well outside my budget.
48
votes
8answers
19k views
Eclipse : Class file name must end with .class exception in Java Search
I was hoping someone could help me out with a problem I'm having using the java search function in Eclipse on a particular project.
When using the java search on one particular project, I get an ...
45
votes
8answers
14k views
How to search through all commits in the repository?
I have a Git repository with few branches and dangling commits. I would like to search all such commits in repository for a specific string.
I know how to get a log of all commits in history, but ...
43
votes
7answers
18k views
How to combine 2 or more querysets in a Django view?
I am trying to build the search for a Django site I am building, and in the search I am searching in 3 different models. And to get pagination on the search result list I would like to use a generic ...
41
votes
5answers
2k views
How would one use Lucene.NET to help implement search on a site like StackOverflow?
I've asked a simlar question on Meta StackOverflow, but that deals specifically with whether or not Lucene.NET is used on StackOverflow.
The purpose of the question here is more of a hypotetical, as ...
41
votes
17answers
4k views
What makes a “friendly URL”?
First of all, please excuse my ignorance on this...I'm totally willing to accept that my opinion on this is wrong. In fact, I suspect that it is given the sheer number of web developers that seem to ...
38
votes
11answers
1k views
What is best and most active open source .Net search technology?
I'm trying to decide on an open source search/indexing technology for a .Net project. It seems like the standard out there for Java projects is Lucene, but as far as .Net is concerned, the Lucene.Net ...
34
votes
13answers
3k views
What's Up with O(1)?
I have been noticing some very strange usage of O(1) in discussion of algorithms involving hashing and types of search, often in the context of using a dictionary type provided by the language system, ...
33
votes
12answers
2k views
Programmer-friendly search engine?
Google is unfriendly to searching for verbatim strings with characters like $ and #. Is there a search engine that supports searching for verbatim strings?
I'm aware of this question that was asked a ...
31
votes
7answers
18k views
Find in Files: Search all code in Team Foundation Server
Is there a way to search the latest version of every file in TFS for a specific string or regex? This is probably the only thing I miss from Visual Source Safe...
Currently I perform a Get Latest ...
30
votes
3answers
9k views
Eclipse exclude folders from search
I'd like to exclude certain folders (and all their subfolders) from searching within Eclipse, is this possible?
Thanks,
Don
29
votes
14answers
4k views
Given a 2d array sorted in increasing order from left to right and top to bottom, what is the best way to search for a target number?
I was recently given this interview question and I'm curious what a good solution to it would be.
Say I'm given a 2d array where all the
numbers in the array are in increasing
order from left ...
27
votes
4answers
625 views
How to search over huge non-text based data sets?
In a project I am working, the client has a an old and massive(terabyte range) RDBMS. Queries of all kinds are slow and there is no time to fix/refactor the schema. I've identified the sets of common ...
27
votes
9answers
5k views
How do you make vim unhighlight what you searched for?
I search for "nurple" in a file. I found it, great. But now, every occurrence of "nurple" is rendered in sick black on yellow. Forever.
Forever, that is, until I search for something I know won't ...
26
votes
6answers
14k views
Fulltext Search with InnoDB
I'm developing a high-volume web application, where part of it is a MySQL database of discussion posts that will need to grow to 20M+ rows, smoothly.
I was originally planning on using MyISAM for the ...
25
votes
3answers
3k views
How can I view a git log of just one user's commit's?
When using 'git log' how can I filter by user so that I see only commits from that user?
25
votes
9answers
6k views
How do I implement Search Functionality in a website?
I want to implement search functionality for a website (assume it is similar to SO). I don't want to use Google search of stuff like that.
My question is:
How do I implement this?
There are two ...
23
votes
2answers
799 views
How to efficiently search in an ordered matrix?
I have a x by y matrix, where each row and each column are in ascending order as given below.
1 5 7 9
4 6 10 15
8 11 12 19
14 16 18 21
How to search this matrix for a number ...
22
votes
9answers
4k views
How to optimally solve the flood fill puzzle?
I like playing the puzzle game Flood-It, which can be played online at:
http://floodit.appspot.com/
It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number ...
21
votes
4answers
398 views
Mystical restriction on std::binary_search
Problem desicription:
Consider some structure having an std::string name member. For clearness let's suppose that it's a struct Human, representing information about people. Besides the name it can ...
21
votes
2answers
4k views
How to grep git commits for a certain word
In a Git code repository I want to list all commits that contain a certain word
I tried this:
git log -p | grep --context=4 "word"
but it does not necessarily give me back the filename (unless ...
20
votes
7answers
2k views
Search engine solution for Django that actually works?
The story so far:
Decided to go with Xapian as search backend because it has all search-engine features I was looking for, knows about Unicode, stemming, has few dependencies and requires no bloated ...
20
votes
8answers
8k views
What .NET collection provides the fastest search
I have 60k items that need to be checked against a 20k lookup list. Is there a collection object (like List, HashTable) that provides an exceptionly fast .Contains() method? Or will I have to write my ...
20
votes
9answers
44k views
How can I perform a reverse string search in Excel without using VBA?
I have an Excel spreadsheet containing a list of strings. Each string is made up of several words, but the number of words in each string is different.
Using built in Excel functions (no VBA), is ...
19
votes
17answers
2k views
How fast can you make linear search?
I'm looking to optimize this linear search:
static int
linear (const int *arr, int n, int key)
{
int i = 0;
while (i < n) {
if (arr [i] >= key)
...
19
votes
7answers
31k views
Using XPATH to search text containing
I use XPather Browser to check my XPATH expressions on an HTML page.
My end goal is to use these expressions in Selenium for the testing of my user interfaces.
I got an HTML file with a content ...
19
votes
5answers
26k views
JavaScript: case-insensitive search
I'm trying to get a case-insensitive Search with two String in JavaScript working.
Normally it would be like this:
var string="Stackoverflow is the BEST";
var result= string.search(/best/i);
...
18
votes
5answers
797 views
How do you spell/pronounce all the special characters and symbols
English is not my first language and when programming I sometimes need to look for information for a special portion of code. When this code concerns or contains a special character (°, *, #, ... ...
18
votes
4answers
1k views
search functionality on multi-language django site
I'm building a multi-language Django site, and I'm using django-transmeta for my model data translations. Now I'm wondering if there is a Django search app that works with multi-language models. I've ...
18
votes
3answers
15k views
Find all elements on a page whose element ID contains a certain text using jQuery
I'm trying to find all elements on a page whose element ID contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly ...
18
votes
3answers
7k views
How to implement search features in ASP.NET MVC applications
I can imagine many ways of implemeting search features in an ASP.NET MVC application but since I can't find much documentation I was wondering if you have any common pattern, technology or common ...
18
votes
9answers
45k views
Search All Fields In All Tables For A Specific Value (Oracle)
Is it possible to search every field of every table for a particular value in Oracle?
There are hundreds of tables with thousands of rows in some tables so I know this could take a very long time to ...
18
votes
5answers
9k views
What is the difference between Python's re.search and re.match?
What is the difference between the search() and match() functions in the Python re module?
I've read the documentation, but I never seem to remember it. I keep having to look it up and re-learn it. ...
17
votes
3answers
2k views
Search code inside a Github project
Is there a way to grep for something inside a Github project's code?
I could pull the source and grep it locally, but I was wondering if it's possible through the web interface or a 3rd-party ...
17
votes
20answers
26k views
Algorithm to find two repeated numbers in an array, without sorting
There is an array of size n (numbers are between 0 and n - 3) and only 2 numbers are repeated. Elements are placed randomly in the array.
E.g. in {2, 3, 6, 1, 5, 4, 0, 3, 5} n=9, and repeated ...
16
votes
3answers
7k views
How to filter NSFetchedResultsController (CoreData) with UISearchDisplayController/UISearchBar
I'm trying to implement search code in my CoreData-based iPhone app. I'm not sure how to proceed. The app already has an NSFetchedResultsController with a predicate to retrieve the data for the ...
16
votes
2answers
506 views
Does F# documentation have a way to search for functions by their types?
Say I want to know if F# has a library function of type
('T -> bool) -> 'T list -> int
ie, something that counts how many items of a list that a function returns true for. (or returns the ...
16
votes
2answers
8k views
JSON find in JavaScript
Is there a better way other than looping to find data in JSON? It's for edit and delete.
for(var k in objJsonResp) {
if (objJsonResp[k].txtId == id) {
if (action == 'delete') {
...
16
votes
12answers
1k views
How to store documentation of programs, libraries and languages you use
As I often work without a fast or even any internet connection, I have a webserver that serves commonly used documentation, for example:
Various programming languages (php, Python, Java, ...)
...
16
votes
7answers
8k views
Implementation of Levenshtein distance for mysql/fuzzy search?
I would like to be able to search a table as follows for smith as get everything that it within 1 variance.
Data:
O'Brien
Smithe
Dolan
Smuth
Wong
Smoth
Gunther
Smiht
I have looked into using ...
15
votes
5answers
3k views
Solr delete not working for some reason
Just trying to delete all the documents, and did this:
http://localhost:8983/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*:*%3C/query%3E%3C/delete%3E
then committed:
...
15
votes
11answers
5k views
Efficient way to search a stream for a string
Let's suppose that have a stream of text (or Reader in Java) that I'd like to check for a particular string. The stream of text might be very large so as soon as the search string is found I'd like to ...
15
votes
5answers
9k views
Search for string and get count in VI editor
Well I want to search for a string and find number of occurrences in a file opened using Vi editor.