Hi,
I want to do a ft search by ignoring the case. I saw the forum which had something mentioned in LS formula language.
But I am using Java agent. Can you please let me know how to modify the query to ignore case?
Please find sample code below.
Thanks in advance.
String query = “Test" & "Work”;
query=query.toLowerCase();
query = “"” + query + “"”;
DocumentCollection dc = db.FTSearchRange(query, 0, Database.FT_SCORES, Database.FT_STEMS, 1);
int matches = dc.getCount();