HI, All
I try to make some words as the links by this parser class.
Custom keywords are used, but... some of them are the root of some words, part of a word. So i need to parse (make as the clickable link) some part of a word. Say, "word" keyword is used to be marked in the text "some words about it".
Without separators to be checked.
How to do it ?
I try to make some words as the links by this parser class.
B4X:
Public Sub Initialize (TextEngine As BCTextEngine, kwords As List)
mTextEngine = TextEngine
Keywords = B4XCollections.CreateSet
For Each keyword As String In kwords
Keywords.Add(keyword.ToLowerCase)
Next
End Sub
Custom keywords are used, but... some of them are the root of some words, part of a word. So i need to parse (make as the clickable link) some part of a word. Say, "word" keyword is used to be marked in the text "some words about it".
Without separators to be checked.
How to do it ?