search_and_replace
Locate specific text in a Word document and substitute it with desired content. Simplify document editing by automating repetitive text modifications.
Instructions
Search for text and replace all occurrences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
find_text | Yes | ||
replace_text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"find_text": {
"title": "Find Text",
"type": "string"
},
"replace_text": {
"title": "Replace Text",
"type": "string"
}
},
"required": [
"filename",
"find_text",
"replace_text"
],
"type": "object"
}