Word js : matchCase search option is not working as expected

99 Views Asked by At

I am trying to search a word which is initial caps but matchCase search option is not working as expected. below is my code :

textToHighlight = "Deed";
var rangeCol = para.search(textToHighlight, { matchCase: true});

Paragraph Text : Seller shall convey title to the Property to Buyer by grant deed in the form of letter("Deed").

It always returns first instance of deed which is non caps.

Thanks

1

There are 1 best solutions below

5
On

See the snippet below, it's working as expected. Are you trying to do something else?

let para = "[...] to Buyer by grant deed in the form of letter"

textToHighlight = "Deed";
var rangeCol = para.search(textToHighlight, { matchCase: true});

console.log(rangeCol); // -1, not found

para = "[...] to Buyer by grant Deed in the form of letter"

textToHighlight = "Deed";
var rangeCol = para.search(textToHighlight, { matchCase: true});
console.log(rangeCol); // 24, found

In terms of highlighting the text with vanilla JavaScript, I've come up with the following:

let _text = text.innerText;
button.addEventListener("click", () => {
  text.innerText = _text;
  let textToHighlight = input.value;
  var rangeCol = text.innerText.search(textToHighlight, {
    matchCase: true,
  });

  let node = text.childNodes[0];
  let spaces = node.textContent.match(/^\s*/)[0].length;

  let range = new Range();
  range.setStart(node, spaces + rangeCol);
  range.setEnd(node, spaces + rangeCol + textToHighlight.length);

  const mark = document.createElement("mark");
  range.surroundContents(mark);
});
#text {
  margin: 10px 0;
}

mark {
  background-color: yellow;
}
<div id="text">
  Seller shall convey title to the Property to Buyer by grant deed in the form of letter("Deed").
</div>
<input id="input" type="text" />
<button id="button">Highlight</button>