Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
333 views

Efficient Phrase Matching Algorithm

I have a set of about 7 Million phrases to be matched to about 300 Million queries. Queries can be sub-strings or contain the phrases themselves. Basically I want a measure of 'similarity' between ...
3
votes
1answer
1k views

Searching phrases in Lucene

Could somebody point me to an example how to search for phrases with Lucene.net? Let's say I have in my index a document with field "name", value "Jon Skeet". Now I want to be able to find that ...
2
votes
2answers
260 views

Solr: exact phrase query with a EdgeNGramFilterFactory

In Solr (3.3), is it possible to make a field letter-by-letter searchable through a EdgeNGramFilterFactory and also sensitive to phrase queries? By example, I'm looking for a field that, if ...
2
votes
4answers
287 views

Java: Matching Phrases in a String

I have a list of phrases (phrase might consist of one or more words) in a database and an input string. I need to find out which of those phrases appear in the input string. Is there an efficient way ...
2
votes
4answers
890 views

how do I get month from date in mysql

I want to be able to fetch results from mysql with a statement like this: SELECT * FROM table WHERE amount > 1000 But I want to fetch the result constrained to a certain a month and year ...
2
votes
5answers
936 views

How to extract phrases and then words in a string of text?

I have a search method that takes in a user-entered string, splits it at each space character and then proceeds to find matches based on the list of separated terms: string[] terms = ...
1
vote
1answer
88 views

R Text Mining: Counting the number of times a specific word appears in a corpus?

I have seen this question answered in other languages but not in R. [Specifically for R text mining] I have a set of frequent phrases that is obtained from a Corpus. Now I would like to search for ...
1
vote
1answer
33 views

Efficiently selecting a title (the center of the cluster) for a cluster of strings

I have an (imperfectly) clustered string data, where the items in one cluster might look like this: [ Yellow ripe banana very tasty, Yellow ripe banana with little dots, Green apple with ...
1
vote
2answers
177 views

how to find frequency of a phrase (multiple token string) inside a document in java?

I want to find the frequency of a multiple-token-string or phrase inside a document. Its not the word/single-term frequency that I am looking for, its always will be multiple-term and the number of ...
1
vote
1answer
127 views

How to sift idioms and set phrases apart from other common phrases using NLP techniques?

What techniques exist that can tell the difference betwen plain common phrases such as "to the", "and the" and set phrases and idioms which have their own lexical meanings such as "pick up", "fall in ...
1
vote
1answer
573 views

How to search phrase queries in inverted index structure?

If we want to search a query like this "t1 t2 t3" (t1,t2 ,t3 must be queued) in an inverted index structure , which ways should we do ? 1-First we search the "t1" term and find all documents that ...
1
vote
3answers
899 views

How to target specific letter/word with jquery?

As a mere example, I want to apply the class "fancy" to all occurrences of the sign "&" in the document. The CSS: .fancy { font-style: italic; } So a text that looks like this: Ben ...
0
votes
0answers
29 views

Support for both EdegeNGram analysis and phrase search in Solr 3.4.0

I want to enable "startsWith" search for each term in a SOLR query but also being able to perform phrase searches (given in quotes). For the prefix search firstly I added the suffix "*". This ...
0
votes
1answer
44 views

PHP: Using randomly generated and integrating a retweet/share button

I am trying to create a randomly generated phrase that can easily be shared amongst social media websites, specifically twitter. I am using the following PHP code to generate a random phrase. This ...
0
votes
3answers
37 views

Search Pattern Frequency

Preferably PHP solutions -- but any ideas would be great. Give a text blob 'This is a super string of some content whree I want to find red sweaters and purple elephants. The purple elephants will ...
0
votes
1answer
39 views

facing issues while using phrase query with slop in LUCENE

I am facing some issues with phrase query, so write a small code to exactly know how phrase query actually works with slop stuff: I have a string "abc institute of technology" and I indexed different ...
0
votes
2answers
61 views

Phrase Search in SQL Server 2008 (T-SQL)

I have a varchar column with 3 rows: i eat orange, orange, oranges are nice I want SELECT query to return the result in this order: orange, oranges are nice, i eat orange i.e. those matches ...
0
votes
1answer
165 views

Exact phrase with special characters in Lucene.net

i've a problem doing a full text search in lucene.net where the search result contains special lucene characters. I've a field named "content" in my Lucene documents. This field is created as ...
0
votes
1answer
353 views

“phrase search” in solr/lucene

I'm using solr 1.4 and solr 4 for fulltext-search inside documents. At the moment I'm unable to search whole phrases, like "The dog runs" at the textblock: "The dog runs through the house." For this ...
0
votes
4answers
717 views

Delphi Phrase Count / Keyword Density

Does anyone know how to or have some code on counting the number of unique phrases in a document? (Single word, two word phrases, three word phrases). Thanks Example of what I'm looking for: What ...
0
votes
4answers
633 views

Regex to extract the search term in search phrase

I have the following search phrase and I need to extract ABC XYZ Mobile Accessories Samsung 250 whenever they occur in the string in any order. The application is C# .Net. Search Phrase ...