文本字数统计
统计文本的字数、字符数、行数
GET
https://www.pa95.com/API/text_count.php
请求方式
GET
返回格式
application/json
调用方式
免费公开
调用次数
9 次
请求示例
https://www.pa95.com/API/text_count.php?text=Hello World 你好世界
请求参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| text | string | 必填 | 要统计的文本 |
返回示例
{
"code": 200,
"data": {
"chars": 17,
"words": 4,
"lines": 1,
"chinese": 4,
"english": 10
}
}
在线调试
相关接口