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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
package uniseg_test
import (
"fmt"
"github.com/rivo/uniseg"
)
func ExampleGraphemeClusterCount() {
n := uniseg.GraphemeClusterCount("π©πͺπ³οΈβπ")
fmt.Println(n)
// Output: 2
}
func ExampleFirstGraphemeCluster() {
b := []byte("π©πͺπ³οΈβπ!")
state := -1
var c []byte
for len(b) > 0 {
var width int
c, b, width, state = uniseg.FirstGraphemeCluster(b, state)
fmt.Println(string(c), width)
}
// Output: π©πͺ 2
//π³οΈβπ 2
//! 1
}
func ExampleFirstGraphemeClusterInString() {
str := "π©πͺπ³οΈβπ!"
state := -1
var c string
for len(str) > 0 {
var width int
c, str, width, state = uniseg.FirstGraphemeClusterInString(str, state)
fmt.Println(c, width)
}
// Output: π©πͺ 2
//π³οΈβπ 2
//! 1
}
func ExampleFirstWord() {
b := []byte("Hello, world!")
state := -1
var c []byte
for len(b) > 0 {
c, b, state = uniseg.FirstWord(b, state)
fmt.Printf("(%s)\n", string(c))
}
// Output: (Hello)
//(,)
//( )
//(world)
//(!)
}
func ExampleFirstWordInString() {
str := "Hello, world!"
state := -1
var c string
for len(str) > 0 {
c, str, state = uniseg.FirstWordInString(str, state)
fmt.Printf("(%s)\n", c)
}
// Output: (Hello)
//(,)
//( )
//(world)
//(!)
}
func ExampleFirstSentence() {
b := []byte("This is sentence 1.0. And this is sentence two.")
state := -1
var c []byte
for len(b) > 0 {
c, b, state = uniseg.FirstSentence(b, state)
fmt.Printf("(%s)\n", string(c))
}
// Output: (This is sentence 1.0. )
//(And this is sentence two.)
}
func ExampleFirstSentenceInString() {
str := "This is sentence 1.0. And this is sentence two."
state := -1
var c string
for len(str) > 0 {
c, str, state = uniseg.FirstSentenceInString(str, state)
fmt.Printf("(%s)\n", c)
}
// Output: (This is sentence 1.0. )
//(And this is sentence two.)
}
func ExampleFirstLineSegment() {
b := []byte("First line.\nSecond line.")
state := -1
var (
c []byte
mustBreak bool
)
for len(b) > 0 {
c, b, mustBreak, state = uniseg.FirstLineSegment(b, state)
fmt.Printf("(%s)", string(c))
if mustBreak {
fmt.Print("!")
}
}
// Output: (First )(line.
//)!(Second )(line.)!
}
func ExampleFirstLineSegmentInString() {
str := "First line.\nSecond line."
state := -1
var (
c string
mustBreak bool
)
for len(str) > 0 {
c, str, mustBreak, state = uniseg.FirstLineSegmentInString(str, state)
fmt.Printf("(%s)", c)
if mustBreak {
fmt.Println(" < must break")
} else {
fmt.Println(" < may break")
}
}
// Output: (First ) < may break
//(line.
//) < must break
//(Second ) < may break
//(line.) < must break
}
func ExampleStep_graphemes() {
b := []byte("π©πͺπ³οΈβπ!")
state := -1
var c []byte
for len(b) > 0 {
var boundaries int
c, b, boundaries, state = uniseg.Step(b, state)
fmt.Println(string(c), boundaries>>uniseg.ShiftWidth)
}
// Output: π©πͺ 2
//π³οΈβπ 2
//! 1
}
func ExampleStepString_graphemes() {
str := "π©πͺπ³οΈβπ!"
state := -1
var c string
for len(str) > 0 {
var boundaries int
c, str, boundaries, state = uniseg.StepString(str, state)
fmt.Println(c, boundaries>>uniseg.ShiftWidth)
}
// Output: π©πͺ 2
//π³οΈβπ 2
//! 1
}
func ExampleStep_word() {
b := []byte("Hello, world!")
state := -1
var (
c []byte
boundaries int
)
for len(b) > 0 {
c, b, boundaries, state = uniseg.Step(b, state)
fmt.Print(string(c))
if boundaries&uniseg.MaskWord != 0 {
fmt.Print("|")
}
}
// Output: Hello|,| |world|!|
}
func ExampleStepString_word() {
str := "Hello, world!"
state := -1
var (
c string
boundaries int
)
for len(str) > 0 {
c, str, boundaries, state = uniseg.StepString(str, state)
fmt.Print(c)
if boundaries&uniseg.MaskWord != 0 {
fmt.Print("|")
}
}
// Output: Hello|,| |world|!|
}
func ExampleStep_sentence() {
b := []byte("This is sentence 1.0. And this is sentence two.")
state := -1
var (
c []byte
boundaries int
)
for len(b) > 0 {
c, b, boundaries, state = uniseg.Step(b, state)
fmt.Print(string(c))
if boundaries&uniseg.MaskSentence != 0 {
fmt.Print("|")
}
}
// Output: This is sentence 1.0. |And this is sentence two.|
}
func ExampleStepString_sentence() {
str := "This is sentence 1.0. And this is sentence two."
state := -1
var (
c string
boundaries int
)
for len(str) > 0 {
c, str, boundaries, state = uniseg.StepString(str, state)
fmt.Print(c)
if boundaries&uniseg.MaskSentence != 0 {
fmt.Print("|")
}
}
// Output: This is sentence 1.0. |And this is sentence two.|
}
func ExampleStep_lineBreaking() {
b := []byte("First line.\nSecond line.")
state := -1
var (
c []byte
boundaries int
)
for len(b) > 0 {
c, b, boundaries, state = uniseg.Step(b, state)
fmt.Print(string(c))
if boundaries&uniseg.MaskLine == uniseg.LineCanBreak {
fmt.Print("|")
} else if boundaries&uniseg.MaskLine == uniseg.LineMustBreak {
fmt.Print("β")
}
}
// Output: First |line.
//βSecond |line.β
}
func ExampleStepString_lineBreaking() {
str := "First line.\nSecond line."
state := -1
var (
c string
boundaries int
)
for len(str) > 0 {
c, str, boundaries, state = uniseg.StepString(str, state)
fmt.Print(c)
if boundaries&uniseg.MaskLine == uniseg.LineCanBreak {
fmt.Print("|")
} else if boundaries&uniseg.MaskLine == uniseg.LineMustBreak {
fmt.Print("β")
}
}
// Output: First |line.
//βSecond |line.β
}
func ExampleGraphemes_graphemes() {
g := uniseg.NewGraphemes("π©πͺπ³οΈβπ")
for g.Next() {
fmt.Println(g.Str())
}
// Output: π©πͺ
//π³οΈβπ
}
func ExampleGraphemes_word() {
g := uniseg.NewGraphemes("Hello, world!")
for g.Next() {
fmt.Print(g.Str())
if g.IsWordBoundary() {
fmt.Print("|")
}
}
// Output: Hello|,| |world|!|
}
func ExampleGraphemes_sentence() {
g := uniseg.NewGraphemes("This is sentence 1.0. And this is sentence two.")
for g.Next() {
fmt.Print(g.Str())
if g.IsSentenceBoundary() {
fmt.Print("|")
}
}
// Output: This is sentence 1.0. |And this is sentence two.|
}
func ExampleGraphemes_lineBreaking() {
g := uniseg.NewGraphemes("First line.\nSecond line.")
for g.Next() {
fmt.Print(g.Str())
if g.LineBreak() == uniseg.LineCanBreak {
fmt.Print("|")
} else if g.LineBreak() == uniseg.LineMustBreak {
fmt.Print("β")
}
}
if g.LineBreak() == uniseg.LineMustBreak {
fmt.Print("\nNo clusters left. LineMustBreak")
}
g.Reset()
if g.LineBreak() == uniseg.LineDontBreak {
fmt.Print("\nIterator has been reset. LineDontBreak")
}
// Output: First |line.
//βSecond |line.β
//No clusters left. LineMustBreak
//Iterator has been reset. LineDontBreak
}
func ExampleStringWidth() {
fmt.Println(uniseg.StringWidth("Hello, δΈη"))
// Output: 11
}
|