Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/regexp/regexp.go

    // Bitmap used by func special to check whether a character needs to be escaped.
    var specialBytes [16]byte
    
    // special reports whether byte b needs to be escaped by QuoteMeta.
    func special(b byte) bool {
    	return b < utf8.RuneSelf && specialBytes[b%16]&(1<<(b/16)) != 0
    }
    
    func init() {
    	for _, b := range []byte(`\.+*?()|[]{}^$`) {
    		specialBytes[b%16] |= 1 << (b / 16)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top