find_text_in_document
Locate specific text in a Word document with options to match case or whole words. Use this tool to quickly search and identify text occurrences in files.
Instructions
Find occurrences of specific text in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
match_case | No | ||
text_to_find | Yes | ||
whole_word | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"match_case": {
"default": true,
"title": "Match Case",
"type": "boolean"
},
"text_to_find": {
"title": "Text To Find",
"type": "string"
},
"whole_word": {
"default": false,
"title": "Whole Word",
"type": "boolean"
}
},
"required": [
"filename",
"text_to_find"
],
"type": "object"
}