I have about 500 different word documents, where a specific country is given like this:
It is only the last value - Poland (their country that i need to transfer to a excel coloum).
Do any of you guys know how to make such a request? - How to take about hundreds of different countries from hundreds of different word documents, and put into one excel sheet in a column, so it looks like this:
I really hope some of you knows how to do this, it would really be a big help!
Use read text acitivity(which is in UiPath.Word.Activities package ), which gives you word document text into a string variable.
Now split this string variable by each line,
loop through each line and if line starts with - place of birth: , then use string manipulation functions like substring and extract the country name
Now you put this country name into your excel sheet.