Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BareCR (0.06 sec)

  1. src/encoding/csv/reader_test.go

    	Name:   "Simple",
    	Input:  "§a,§b,§c\n",
    	Output: [][]string{{"a", "b", "c"}},
    }, {
    	Name:   "CRLF",
    	Input:  "§a,§b\r\n¶§c,§d\r\n",
    	Output: [][]string{{"a", "b"}, {"c", "d"}},
    }, {
    	Name:   "BareCR",
    	Input:  "§a,§b\rc,§d\r\n",
    	Output: [][]string{{"a", "b\rc", "d"}},
    }, {
    	Name: "RFC4180test",
    	Input: `§#field1,§field2,§field3
    ¶§"aaa",§"bb
    b",§"ccc"
    ¶§"a,a",§"b""bb",§"ccc"
    ¶§zzz,§yyy,§xxx
    `,
    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