找字(要找的字符串: any, 范围: any): boolean = ocr
OCR找字 这个只能识别 中文 英文
*@param*`string 文本型` `要找的字符串`
*@param*`string 文本型 || array 数组型` `范围`
@returns `{boolean}` `逻辑型`
可以搭配[取数据()](doc\:t2HcFTz4)一起使用
# 找字
```javascript
//在整个屏幕上寻找字符串 Autox.js
找字('这里输入要找的字符串')
if (is) {
提示('找到了 指定内容')
} else {
提示('没有找到 指定内容')
}
```
# 找字点击
```javascript
找字('Autox.js')
点击()//如果没有找到Autox.js是不会触发点击的
if (is) {
提示('找到Autox.js')
} else {
提示('没有找到Autox.js')
}
```
# 指定范围内找字 - 传统用法
```javascript
找字('Autox.js',[89,229,62,66])
if (is) {
提示('找到Autox.js')
} else {
提示('没有找到Autox.js')
}
```
# 指定范围内找字 - 数据包用法
```javascript
找字('Autox.js','某某自定义的备注')//某某自定义的备注 来自PC端工具箱 数据包 自定义的备注
if (is) {
提示('找到Autox.js')
} else {
提示('没有找到Autox.js')
}
```
# OCR取数据
```javascript
//例如我们找到的字符串:AA BB SS
ocr('')
log(取数据())//返回字符串型:AA BB SS
ocr('')
log(取数据(1))//返回数组型:[{text: "AA",bool: true,ret: true,x: 101,y: 884,x2: 0.15,y2: 0.44},{text: "BB",bool: true,ret: true,x: 200,y: 884,x2: 0.21,y2: 0.44},{text: "SS",bool: true,ret: true,x: 301,y: 884,x2: 0.20,y2: 0.44}]
//例如我们找到的字符串:AA BB SS
找字('')
log(取数据())//返回字符串型:AA BB SS
找字('')
log(取数据(1))//返回数组型:[{text: "AA",bool: true,ret: true,x: 101,y: 884,x2: 0.15,y2: 0.44},{text: "BB",bool: true,ret: true,x: 200,y: 884,x2: 0.21,y2: 0.44},{text: "SS",bool: true,ret: true,x: 301,y: 884,x2: 0.20,y2: 0.44}]
```
# [工具箱使用教程](doc:2luf8svl)