Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleIsUpper (0.09 sec)

  1. src/unicode/example_test.go

    	// true
    	// false
    }
    
    func ExampleIsLower() {
    	fmt.Printf("%t\n", unicode.IsLower('a'))
    	fmt.Printf("%t\n", unicode.IsLower('A'))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleIsUpper() {
    	fmt.Printf("%t\n", unicode.IsUpper('A'))
    	fmt.Printf("%t\n", unicode.IsUpper('a'))
    	// Output:
    	// true
    	// false
    }
    
    func ExampleIsTitle() {
    	fmt.Printf("%t\n", unicode.IsTitle('Dž'))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top