Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 770 Bytes

README.md

File metadata and controls

52 lines (40 loc) · 770 Bytes

sputter

POSIX basic regular expressions to psuedo random string generator, just for fun

(Forked from my old work account)

Usage

package main

import (
	"fmt"

	"github.com/brianasapp/sputter"
)

func main() {
	s, err := sputter.Gen("[A-Z0-9]^(Word){1,3}$.+")
	if err != nil {
		panic(err)
	}
	fmt.Printf("generated below: \n%s\n", s)
}
$ go run main.go
generated below:
5
WordWord
Њѯѹկ¢↔≡♲

For cryptographically insecure usage, use the GenInsecure function in place of Gen

Supported Operations

  • literal
  • character class
  • capture
  • any char not newline
  • begin line
  • end line
  • star
  • plus
  • question
  • repeat
  • concat
  • alternation

note: for randomized repetition, there is a max value of 100.