Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for xacxacx (0.12 sec)

  1. src/regexp/all_test.go

    	// Substitution when subexpression isn't found
    	{"(x)?", "$1", "123", "123"},
    	{"abc", "$1", "123", "123"},
    
    	// Substitutions involving a (x){0}
    	{"(a)(b){0}(c)", ".$1|$3.", "xacxacx", "x.a|c.x.a|c.x"},
    	{"(a)(((b))){0}c", ".$1.", "xacxacx", "x.a.x.a.x"},
    	{"((a(b){0}){3}){5}(h)", "y caramb$2", "say aaaaaaaaaaaaaaaah", "say ay caramba"},
    	{"((a(b){0}){3}){5}h", "y caramb$2", "say aaaaaaaaaaaaaaaah", "say ay caramba"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top