blob: b5811af66276c0e1ec2f84959af1ecf2703197b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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
}
|