Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleFullRune (0.18 sec)

  1. src/unicode/utf8/example_test.go

    		size := utf8.EncodeRune(buf, c)
    		fmt.Printf("%d: %d %[2]s %d\n", i, buf, size)
    	}
    	// Output:
    	// 0: [239 191 189] � 3
    	// 1: [239 191 189] � 3
    	// 2: [239 191 189] � 3
    }
    
    func ExampleFullRune() {
    	buf := []byte{228, 184, 150} // 世
    	fmt.Println(utf8.FullRune(buf))
    	fmt.Println(utf8.FullRune(buf[:2]))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleFullRuneInString() {
    	str := "世"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 21:29:18 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top