Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10384178
tags.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
642 B
Subscribers
None
tags.go
View Options
// Package tags supports operations around hashtags in plain text content
package
tags
import
(
"github.com/kylemcc/twitter-text-go/extract"
)
// Extract finds all hashtags in the given string and returns a de-duplicated
// list of them.
func
Extract
(
body
string
)
[]
string
{
matches
:=
extract
.
ExtractHashtags
(
body
)
tags
:=
map
[
string
]
bool
{}
for
i
:=
range
matches
{
// Second value (whether or not there's a hashtag) ignored here, since
// we're only extracting hashtags.
ht
,
_
:=
matches
[
i
].
Hashtag
()
tags
[
ht
]
=
true
}
resTags
:=
make
([]
string
,
0
)
for
k
:=
range
tags
{
resTags
=
append
(
resTags
,
k
)
}
return
resTags
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 23, 6:24 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3104421
Attached To
rWC Write.as Web Core
Event Timeline
Log In to Comment