Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NonASCIICommaConfusion (0.13 sec)

  1. src/encoding/csv/reader_test.go

    	Output:  [][]string{{"a", "  b,", " c"}},
    	Comma:   '€',
    	Comment: 'λ',
    }, {
    	// λ and θ start with the same byte.
    	// This tests that the parser doesn't confuse such characters.
    	Name:    "NonASCIICommaConfusion",
    	Input:   "§\"abθcd\"λ§efθgh",
    	Output:  [][]string{{"abθcd", "efθgh"}},
    	Comma:   'λ',
    	Comment: '€',
    }, {
    	Name:    "NonASCIICommentConfusion",
    	Input:   "§λ\n¶§λ\nθ\n¶§λ\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top