Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/net/mail/message.go

    		return "", fmt.Errorf("mail: missing word in phrase: %v", err)
    	}
    	phrase = strings.Join(words, " ")
    	return phrase, nil
    }
    
    // consumeQuotedString parses the quoted string at the start of p.
    func (p *addrParser) consumeQuotedString() (qs string, err error) {
    	// Assume first byte is '"'.
    	i := 1
    	qsb := make([]rune, 0, 10)
    
    	escaped := false
    
    Loop:
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top