This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascii.go
67 lines (59 loc) · 1.46 KB
/
ascii.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2013 Vedran Vuk. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package strings
import (
"strings"
)
const (
Nums = "0123456789"
AlphaUpper = "ABCDEFGHIJKLMNOPQRSTUVXYZ"
AlphaLower = "abcdefghijklmnopqrstuvxyz"
Alpha = AlphaUpper + AlphaLower
AlphaNums = Nums + Alpha
)
// Checks if "s" consists exclusively of numeric characters.
func IsNumsOnly(s string) bool {
for _, c := range s {
if !strings.Contains(Nums, string(c)) {
return false
}
}
return true
}
// Checks if "s" consists exclusively of lowercase alpha characters.
func IsAlphaLowerOnly(s string) bool {
for _, c := range s {
if !strings.Contains(AlphaLower, string(c)) {
return false
}
}
return true
}
// Checks if "s" consists exclusively of uppercase alpha characters.
func IsAlphaUpperOnly(s string) bool {
for _, c := range s {
if !strings.Contains(AlphaUpper, string(c)) {
return false
}
}
return true
}
// Checks if "s" consists exclusively of alpha characters.
func IsAlphaOnly(s string) bool {
for _, c := range s {
if !strings.Contains(Alpha, string(c)) {
return false
}
}
return true
}
// Checks if "s" consists exclusively of alphanumeric characters.
func IsAlphaNumsOnly(s string) bool {
for _, c := range s {
if !strings.Contains(AlphaNums, string(c)) {
return false
}
}
return true
}