Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/encoding/csv/reader_test.go

    	Input:   "§λ\n¶§λ\nθ\n¶§λ\n",
    	Output:  [][]string{{"λ"}, {"λ"}, {"λ"}},
    	Comment: 'θ',
    }, {
    	Name:   "QuotedFieldMultipleLF",
    	Input:  "§\"\n\n\n\n\"",
    	Output: [][]string{{"\n\n\n\n"}},
    }, {
    	Name:  "MultipleCRLF",
    	Input: "\r\n\r\n\r\n\r\n",
    }, {
    	// The implementation may read each line in several chunks if it doesn't fit entirely
    	// in the read buffer, so we should test the code to handle that condition.
    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