goemoji is a lightweight, blazing fast Go library designed for handling text with emojis. Supporting the latest Unicode emoji standards!
- β¨ Simple API - Clean and intuitive interface
- β‘ High Performance - Optimized with parallel processing capabilities
- 𧩠Feature Rich - Replace, remove, count, and split operations
- π Flexible Processing - Handle text and emojis separately
go get -u github.com/SkywalkerDarren/goemoji
package main
import (
"fmt"
"github.com/SkywalkerDarren/goemoji"
)
func main() {
raw := "emojiπ"
r1 := goemoji.ReplaceEmojis(raw, func(s string) string {
return "(" + s + ")"
})
fmt.Println(r1) // emoji(π)
r2 := goemoji.ReplaceText(raw, func(s string) string {
return "(" + s + ")"
})
fmt.Println(r2) // (emoji)π()
r3 := goemoji.Replace(raw, func(s string) string {
return "{" + s + "}"
}, func(s string) string {
return "(" + s + ")"
})
fmt.Println(r3) // (emoji){π}()
r4 := goemoji.RemoveText(raw)
fmt.Println(r4) // π
r5 := goemoji.RemoveEmojis(raw)
fmt.Println(r5) // emoji
c := goemoji.Count(raw)
fmt.Println(c) // 1
s := goemoji.Split(raw, true)
fmt.Println(s) // [emoji π]
goemoji.HandleAll(raw, func(emoji string) {
// do something with emoji
}, func(text string) {
// do something with text
})
}
goemoji is optimized for speed with minimal memory allocation:
go test -bench=. -benchmem -v -run Benchmark ./...
goos: darwin
goarch: arm64
pkg: github.com/SkywalkerDarren/goemoji
BenchmarkRemoveEmojis-8 9397803 127.2 ns/op 16 B/op 1 allocs/op
BenchmarkRemoveEmojisParallel-8 38755568 30.46 ns/op 16 B/op 1 allocs/op
BenchmarkRemoveText-8 10777095 111.2 ns/op 0 B/op 0 allocs/op
BenchmarkRemoveTextParallel-8 51726182 22.37 ns/op 0 B/op 0 allocs/op
BenchmarkReplaceEmojis-8 9324697 128.1 ns/op 16 B/op 1 allocs/op
BenchmarkReplaceEmojisParallel-8 35846263 29.12 ns/op 16 B/op 1 allocs/op
BenchmarkReplaceText-8 9069320 131.8 ns/op 8 B/op 1 allocs/op
BenchmarkReplaceTextParallel-8 41602144 27.75 ns/op 8 B/op 1 allocs/op
BenchmarkReplace-8 10482950 114.5 ns/op 0 B/op 0 allocs/op
BenchmarkReplaceParallel-8 49429840 22.93 ns/op 0 B/op 0 allocs/op
BenchmarkSplit-8 8971143 133.5 ns/op 16 B/op 1 allocs/op
BenchmarkSplitParallel-8 38264695 30.21 ns/op 16 B/op 1 allocs/op
BenchmarkCount-8 1587834 755.5 ns/op 0 B/op 0 allocs/op
BenchmarkCountParallel-8 54065012 22.56 ns/op 0 B/op 0 allocs/op
PASS
ok github.com/SkywalkerDarren/goemoji 19.516s
ReplaceEmojis
- Replace all emojis in textReplaceText
- Replace all non-emoji content in textReplace
- Replace both text and emojis with different handlersRemoveEmojis
- Remove all emojis from textRemoveText
- Remove all non-emoji content from textCount
- Count the number of emojis in textSplit
- Split text into text and emoji segmentsHandleAll
- Process each text and emoji segment separately
MIT License