Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleRegexp_ReplaceAllStringFunc (1.06 sec)

  1. src/regexp/example_test.go

    	fmt.Println(re.ReplaceAllString("-ab-axxb-", "${1}W"))
    
    	// Output:
    	// -T-T-
    	// --xx-
    	// ---
    	// -W-xxW-
    	// --xx-
    	// -W-xxW-
    }
    
    func ExampleRegexp_ReplaceAllStringFunc() {
    	re := regexp.MustCompile(`[^aeiou]`)
    	fmt.Println(re.ReplaceAllStringFunc("seafood fool", strings.ToUpper))
    	// Output:
    	// SeaFooD FooL
    }
    
    func ExampleRegexp_SubexpNames() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top