Hi All, Get text, find text for Word document is not responding. It’s able to read but wont find the text
Ensure that the get text activity is properly configured to extract the text from the document.
Why are you using get text?
ideally we have word related activities that we need to use
cheers
Using the Get Text activity in Word is not a proper way. I suggest you use a package for reading Word documents, one of which is UiPath.Word.Activity.
After using the Read activity of Word, save all the text in a variable, and you can use Regex to extract the desired text.
You can use the Matches activity, which helps in executing Regex.
Okay replace regex or match because ai have to read the word document then replace some words
I am trying to get the last row information from a word document
read the whole doc and then split with new line and get last
str.Split({"\n","\n\r",Environment.NewLine},StringSplitOptions.RemoveEmptyEntries).Last
cheers
I can still use this if the word document has a change history table but the last row is the latest information change which I need?
How can I have the bot find that change history table in the word document?
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.