I need index of HTML string, I have index of Textual string. How can i find HTML string index that is same as Textual string index?
HTML string
<div> My name is <span contenteditable="false" id="3" style=" color:rgb(35, 149, 255);">Aaliyah</span> and i am from @.</div>
textual string
My name is Aaliyah and i am from @
caret position is 18.
Now please tell me, how can i find this 18 caret position index in HTML string? Thanks
Note: I need HTML index of html string. I have caret position of Textual string. They both should point to the same text. weather it is HTML string, or same textual string(with no HTML element).