aboutsummaryrefslogblamecommitdiff
path: root/scanners.go
blob: b5811af66276c0e1ec2f84959af1ecf2703197b3 (plain) (tree)
























                                                                                                                        
package unilex

// ScanNumber simplest scanner that accepts decimal int and float.
func ScanNumber(l *Lexer) bool {
	l.AcceptWhile("0123456789")
	if l.AtStart() {
		// not found any digit
		return false
	}
	l.Accept(".")
	l.AcceptWhile("0123456789")
	return !l.AtStart()
}

// ScanAlphaNum returns true if next input token contains alphanum sequence that not starts from digit and not contains.
// spaces or special characters.
func ScanAlphaNum(l *Lexer) bool {
	digits := "0123456789"
	alpha := "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM"
	if !l.Accept(alpha) {
		return false
	}
	l.AcceptWhile(alpha + digits)
	return true
}