gestione ricerca sottostringhe
This commit is contained in:
parent
dfea18a1c8
commit
8b1392bea1
|
@ -104,7 +104,11 @@ function buildSQ() {
|
||||||
const lf = document.getElementById("lemma_forma");
|
const lf = document.getElementById("lemma_forma");
|
||||||
const ftxt = document.getElementById("queryText");
|
const ftxt = document.getElementById("queryText");
|
||||||
if (ftxt.value != "") {
|
if (ftxt.value != "") {
|
||||||
parsedquery.where[1].expression.args[1].value = "^" + ftxt.value + "$";
|
strval=ftxt.value.trim().slice(0, -1)
|
||||||
|
if (ftxt.value.trim().slice(-1) !=='*')
|
||||||
|
strval="^" +ftxt.value.trim()+ "$";
|
||||||
|
|
||||||
|
parsedquery.where[1].expression.args[1].value = strval;
|
||||||
if (lf.value == 'lemma')
|
if (lf.value == 'lemma')
|
||||||
parsedquery.where[1].expression.args[0].value = "lm";
|
parsedquery.where[1].expression.args[0].value = "lm";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue