https://github.com/barahouei/persianvalidator
A Persian text validator in Golang
https://github.com/barahouei/persianvalidator
go golang persian persian-language persian-tools persiantools text-validation validator
Last synced: 6 months ago
JSON representation
A Persian text validator in Golang
- Host: GitHub
- URL: https://github.com/barahouei/persianvalidator
- Owner: barahouei
- License: mit
- Created: 2024-04-22T22:01:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-23T04:56:21.000Z (over 2 years ago)
- Last Synced: 2024-06-19T11:33:18.210Z (about 2 years ago)
- Topics: go, golang, persian, persian-language, persian-tools, persiantools, text-validation, validator
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Persian Validator
Persian text validator in Golang.
## Installation
Use go get:
```
go get github.com/barahouei/persianvalidator
```
## How To Use
```
package main
import (
"fmt"
"github.com/barahouei/persianvalidator"
)
func main() {
str := "سلام دنیا"
isValid := persianvalidator.IsValid(str)
fmt.Println(isValid)
}
```