The returned text by "context.document.getSelection()" not runs for special characters

241 Views Asked by At

I want to get the selected text by the user to search into the rest of document using the next code:

  await window.Word.run(async (context) => {
    const recorder = context.document.getSelection()
    recorder.load(['text'])
    await context.sync()

    console.log('Selected text: ', recorder.text)
    ....
  })

But the text found for the next selection: selected character

is the next: value of the selected text

then when I use this value to search instead to find the correct values then it is being found the wrong character "("

1

There are 1 best solutions below

0
On

The text property do not contain special characters, which is by design. If you need to exam the special property with a range, you can first get the OOXML of the range and then check the OOXML returned.