Search a keyword and replace the word

Hi All,

My issue is that the bot should identify the keyword and substitute a new word.
File can either be.csv or.docx

I used click activity but it doesn’t work.
I am new to studiox please help me out in this scenario.

@sakshi.singhal

If the file type is csv you can use read csv activity and then the output would be a string…store it to variable then use replace activity and pass the string inside and provide value to search and also replace…now use write csv and write the data back

https://docs.uipath.com/activities/docs/read-csv-file

https://docs.uipath.com/activities/docs/replace

https://docs.uipath.com/activities/docs/write-csv-file

For word document you have dedicated word activities…from manage packages install the word activities and then you would have replace text activity for word as well and can use it

https://docs.uipath.com/activities/docs/word-replace-text

https://docs.uipath.com/activities/docs/word-application-scope

Cheers