succinct icon indicating copy to clipboard operation
succinct copied to clipboard

Add support for case-intensive search

Open anuragkh opened this issue 9 years ago • 0 comments

The current search() implementation performs a case-sensitive match. We should add a flag to the search call to make it case insensitive, i.e.,

def search(query: String, caseInsensitive: Boolean = false): RDD[Long]

For a query string abc, it would be equivalent to executing the following regular expression query:

[aA][bB][cC]

anuragkh avatar Nov 15 '15 03:11 anuragkh