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:
then when I use this value to search instead to find the correct values then it is being found the wrong character "("
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.