I store “L. GARCIA FERNANDEZ” in a node with seach-type=“text” but if i make a query with ~=“L.” or “L” it does not returns any element. If query by ~=“GARCIA” it return the document. The charset is iso-8859-1.
With “text” search-type, Tamino builds up a text index of words, so it uses . and , for example as word-delimiters so in your case it builds up an text index of three words: L GARCIA FERNANDEZ refering to the one document, so queries test[name~=“L”] test[name~=“GARCIA”] test[name~=“garcia”] …etc all return the same document. So one cannot search for “.” since this is not a word.