Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NonASCIICommaAndCommentWithQuotes (0.3 sec)

  1. src/encoding/csv/reader_test.go

    	Input:            "§a£§b,c£ \t§d,e\n€ comment\n",
    	Output:           [][]string{{"a", "b,c", "d,e"}},
    	TrimLeadingSpace: true,
    	Comma:            '£',
    	Comment:          '€',
    }, {
    	Name:    "NonASCIICommaAndCommentWithQuotes",
    	Input:   "§a€§\"  b,\"€§ c\nλ comment\n",
    	Output:  [][]string{{"a", "  b,", " c"}},
    	Comma:   '€',
    	Comment: 'λ',
    }, {
    	// λ and θ start with the same byte.
    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