Questions tagged [exact-match]

208 questions
0
votes
4 answers

SAS where condition exact matching

Thanks for the feedback guys, but I have to rewrite the question to make it more clear. Say, we have a table: Table What I am trying to get from this table is a list of numbers which have matching FP_NDT dates to my condition, for example, I want to…
Kvadich
  • 17
  • 6
0
votes
1 answer

Excel - Using a word located in a different cell, into a SUMIFS formula using exact match

I am looking to use a SUMIFS formula that can use a word typed into a different cell, so if the word were to be changed later, it would also update the formula automatically. Here is an example: CELL A - Apple CELL B - Banana CELL C - Orange Here…
Austmado
  • 7
  • 4
0
votes
1 answer

Apache solr exact match of a query with full indexed data

I am using solr 4.8. I have a very basis question. Suppose I have a field is that contains a string e.g. "I am in class" for a document and for second document its value is "class". Now I want to mach query exactly with the stored string. i.e. if…
Hafiz Muhammad Shafiq
  • 8,168
  • 12
  • 63
  • 121
0
votes
0 answers

JQuery live search exact match

I'm using a live search that I modified to run after pressing enter(I have a very large table and it causes the text entry to lag if done on keyUp) and I'm trying to find out a way to make it an exact search instead of just a similar. The reason…
LuckoftheLefty
  • 75
  • 1
  • 1
  • 8
0
votes
0 answers

Can Exact Match and StopwordsFilter mix in Solr

I'm rephrasing my earlier question. Hoping someone will be able to help. I currently have a solr implementation that do exact matching only. Therefore, a search phrase of "THE TEST" will match only to "THE TEST" However, I've also implemented…
user3286012
  • 141
  • 1
  • 3
  • 11
0
votes
1 answer

How to do nested boolean filters for finding exact matcing values on same field in elasticsearch?

My Index mapping is shown below: curl -X PUT localhost:9200/testing/listings/_mapping -d '{ "listings" : { "properties" : { "address" : { "properties": { "location": { "type" : "string", "index" :…
0
votes
1 answer

How to find multiple exact values on a particular field in elasticsearch query?

My Sample Data is shown below: {"listings":{"title" : "testing 1", "address" : { "line1" : "3rd cross", "line2" : "6th main", "line3" : "", "landmark" : "", "location" : "k r puram", "pincode" : "", "city" : "Bangalore"…
0
votes
1 answer

Elasticsearch exact match of specific field(s)

I'm trying to filter my elasticsearch index by specific fields, the "country" field to be exact. However, I keep getting loads of other results (other countries) back that are not exact. Please could someone point me in the right direction. I've…
user1741694
  • 237
  • 4
  • 13
0
votes
1 answer

How to do exact word match in Neo4j?

In Neo4j, we can do mysql query "like" with ex. If node "temp" have column "col" and value "This was in World war 1945"; If we search by "wor" and where query is temp.col =~ '(?i).*'. $search_value . '.*' Then results are coming. But I want…
Somnath Muluk
  • 55,015
  • 38
  • 216
  • 226
0
votes
0 answers

SOLR EdgeNGramFilterFactory with exact search

I have implemented EdgeNgram into my text field, schema is
Akshay
  • 3,558
  • 4
  • 43
  • 77
0
votes
1 answer

exact phrase match query in solr

I want to do an exact match query with Solr. I have already a solr.textField type to make fuzzy and stemmed searches, but I need to be able to do exact match (or "contains" match) queries, like this document_1.text_exact: "The fox was jumping on the…
0
votes
1 answer

Elasticsearch exact match query, getMapping gives as follows

What would be the exact javascript elasticearch client.search-param to match exactly by email? I have tried a lot of variations, but on my test-data, which is only one document, I always get a match for that document even by "aa@bb.cc". Given this…
Gnimmelf
  • 137
  • 2
  • 9
0
votes
1 answer

Solr exact match regarding words number

I've been looking for a week already for some working solution that will allow the following: Documents: [phrase:"cat"], [phrase:"pussy cat"], [phrase:"cats"] Search query: "cat" => results: "cat", "cats" (but not "pussy cat") Search query: "cats"…
Maksim
  • 1,231
  • 1
  • 15
  • 25
0
votes
1 answer

How do I find all exact matches within a block of text in Elasticsearch?

I've got an index of hundreds of book titles in elasticserch, with documents like: {"_id": 123, "title": "The Diamond Age", ...} And I've got a block of freeform text entered by a user. The block of text could contain a number of book titles…
Shreyans
  • 871
  • 7
  • 20
0
votes
1 answer

Search in Single-Token-Field using Lucene.NET

I´m using Lucene.NET 3.0.3 for indexing the content of word-, excel-, etc. documents and some custom fields for each document. If I index a field named "title" as Field.Index.NOT_ANALYZED the Lucene-Index stored the field in correct form. The hole…
user1723639