Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devlop #2

Merged
merged 2 commits into from
Feb 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
---
title: go语言版本的随机单词生成库
date: 2021-02-19 12:12:57
categories:
- Go
tags:
- go
- 编程
---
# WordBot
## 项目介绍
WordBot是一个go语言版本的随机单词生成器。
WordBot是一个go语言版本的随机单词生成库。

有了它可以随机生成单词字符串.可以定义位数1-19位.
可以设置大小写模式.基本满足日程生成随机字符

有此项目诸君不用重复造轮子。
## 说明
### 安装
```go
go get github.com/ser163/WordBot/generate
```
### 示例
```go
package main
Expand Down Expand Up @@ -35,7 +51,10 @@ func GenRandomWorld(length int, model string) (WorldList, error)
3. lower 小写模式,与none相同,与GenRandomLower()功能相同
4. mix 大小写混合模式,与GenRandomMix()功能相同
5. title 首字母大写模式,与GenRandomTitle()功能相同
## 地址
Github: http://github.com/ser163/WordBot/

Gitee: http://gitee.com/ser163/WordBot/
## 感谢
此项目算法参考: https://namefull.github.io

Expand Down