require leading alpha for hashtag
This commit is contained in:
parent
81e660d461
commit
2b8a6ddd20
2
fun.go
2
fun.go
|
@ -151,7 +151,7 @@ func xfiltrate() string {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
var re_hashes = regexp.MustCompile(`(?:^|\W)#[[:alnum:]-]+`)
|
var re_hashes = regexp.MustCompile(`(?:^|\W)#[[:alpha:]][[:alnum:]-]*`)
|
||||||
|
|
||||||
func ontologies(s string) []string {
|
func ontologies(s string) []string {
|
||||||
m := re_hashes.FindAllString(s, -1)
|
m := re_hashes.FindAllString(s, -1)
|
||||||
|
|
Loading…
Reference in New Issue